pl-sem/sem3/task-hex-make/main.asm

11 lines
106 B
NASM
Raw Permalink Normal View History

2023-08-17 22:08:53 +00:00
%include "lib.inc"
section .text
global _start
_start:
mov rax, 0x7632FEED
call print_hex
call exit