mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 05:26:28 +02:00
16 lines
179 B
NASM
16 lines
179 B
NASM
SECTION .DATA
|
|
good: db 'good',10
|
|
txtlen: equ $-good
|
|
|
|
SECTION .TEXT
|
|
GLOBAL _start
|
|
|
|
_start:
|
|
mov eax,4
|
|
mov ebx,1
|
|
mov ecx,good
|
|
mov edx,txtlen
|
|
int 80h
|
|
mov eax,1
|
|
mov ebx,0
|
|
int 80h
|