pl-sem/sem3/task-hex-make/main.asm
2023-08-18 01:08:53 +03:00

10 lines
106 B
NASM

%include "lib.inc"
section .text
global _start
_start:
mov rax, 0x7632FEED
call print_hex
call exit