This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global _start | |
section .data | |
hello db "Hello, World", 10 | |
length equ $ - hello | |
section .text | |
_start: | |
mov eax, 4 ; write to file |