Skip to content

Commit

Permalink
Merge pull request DGivney#28 from airvzxf/patch-4
Browse files Browse the repository at this point in the history
Lesson 22: Add NULL termineting bytes
  • Loading branch information
DGivney authored Jul 11, 2021
2 parents 49727a1 + bac3841 commit 906f2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lesson22/create.asm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%include 'functions.asm'

SECTION .data
filename db 'readme.txt', ; the filename to create
filename db 'readme.txt', 0h ; the filename to create

SECTION .text
global _start
Expand Down

0 comments on commit 906f2a2

Please sign in to comment.