4 with System
.Machine_code
; use System
.Machine_code
;
11 procedure Conv
(res
: out Integer; v
: Integer) is
12 v1
: constant Integer := v
;
14 Asm
("", Integer'Asm_output ("=m", res
), Integer'Asm_input("m", v1
));
17 pragma Inline_Always
(Conv
);