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
8 changes: 4 additions & 4 deletions src/uitest.asm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ start: ; Start of program label
mov cl, 0x11
call [b_user]
lea rsi, [rel test_message] ; Load RSI with the relative memory address of string
mov ecx, 4 ; Output 14 characters
mov ecx, 4 ; Output 4 characters
call [b_output] ; Print the string that RSI points to

lea rsi, [rel newline] ; Load RSI with the relative memory address of string
Expand All @@ -27,7 +27,7 @@ start: ; Start of program label
mov cl, 0x11
call [b_user]
lea rsi, [rel test_message] ; Load RSI with the relative memory address of string
mov ecx, 4 ; Output 14 characters
mov ecx, 4 ; Output 4 characters
call [b_output] ; Print the string that RSI points to

lea rsi, [rel newline] ; Load RSI with the relative memory address of string
Expand All @@ -38,7 +38,7 @@ start: ; Start of program label
mov cl, 0x11
call [b_user]
lea rsi, [rel test_message] ; Load RSI with the relative memory address of string
mov ecx, 4 ; Output 14 characters
mov ecx, 4 ; Output 4 characters
call [b_output] ; Print the string that RSI points to

mov eax, 0x00FF00FF
Expand All @@ -54,7 +54,7 @@ start: ; Start of program label
mov cl, 0x14
call [b_user]
lea rsi, [rel test_message] ; Load RSI with the relative memory address of string
mov ecx, 4 ; Output 14 characters
mov ecx, 4 ; Output 4 characters
call [b_output] ; Print the string that RSI points to

;fill:
Expand Down