5 lines
48 B
NASM
5 lines
48 B
NASM
|
section .text
|
||
|
global _start
|
||
|
_start:
|
||
|
int 42h
|