Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@

segment .text
global main
extern ExitProcess
extern exit

extern printf

Expand All @@ -190,8 +190,8 @@
lea rcx, [msg]
call printf

xor rax, rax
call ExitProcess
xor ecx, ecx
call exit
~~~~~~~~~~~~~~~~~~~~~~~~~~~

You might be asking, "what on earth am I typing here?" at this point. We'll go
Expand Down