HariboteOS/day27/app/hello2.asm
2021-05-29 23:13:17 +08:00

12 lines
114 B
NASM

[BITS 32]
MOV EDX, 2
MOV EBX, msg
INT 0x40
MOV EDX, 4
INT 0x40
msg:
DB "hello", 0