Skip to content
Snippets Groups Projects
Commit 426c4fe5 authored by Stephen D's avatar Stephen D
Browse files

Bug fix - propagation and draw is better. Still have some bugs

parent 7e93335f
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ snake_draw_loop:
je snake_next_byte
;; need to shift
shr cl, 2
shl cl, 2
snake_draw_loaded: ;bytes are ready to go
cmp bx, [snake_sprite_length]
......@@ -64,7 +64,7 @@ snake_draw_loaded: ;bytes are ready to go
;;shift left by 6, right by 6 to get the right most bytes
push cx
shl cl, 6
;//shl cl, 6
shr cl, 6
;; move cursor position accordingly
call snake_draw_move_cursor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment