hello_slices

This commit is contained in:
2025-06-16 02:13:37 -04:00
parent b1b401784a
commit 4654fda9f7
9 changed files with 269 additions and 4 deletions

View File

@ -9,7 +9,7 @@ extern WriteConsoleA
; Data section
section .data
message db "Hello, NASM!", 13, 10, 0 ; String with CRLF and null terminator
message_len equ $ - message ; Calculate string length
message_len equ $ - message ; Calculate string length
; Code section
section .text