Skip to content

Commit

Permalink
OkmPaint: Clean up some things that can use register pointer offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
ry755 committed Sep 13, 2023
1 parent 403da74 commit 9ae1e47
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions applications/okmpaint/start.asm
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,14 @@ GetNextWindowEvent:
push r8
call get_next_window_event
mov r8, eventArgs
mov [r8], r0
add r8, 4
mov [r8], r1
add r8, 4
mov [r8], r2
add r8, 4
mov [r8], r3
add r8, 4
mov [r8], r4
add r8, 4
mov [r8], r5
add r8, 4
mov [r8], r6
add r8, 4
mov [r8], r7
mov [r8+0], r0
mov [r8+4], r1
mov [r8+8], r2
mov [r8+12], r3
mov [r8+16], r4
mov [r8+20], r5
mov [r8+24], r6
mov [r8+28], r7
pop r8
ret

Expand Down

0 comments on commit 9ae1e47

Please sign in to comment.