create repository with functional basic implementation

This commit is contained in:
2026-04-24 07:13:59 +02:00
commit 7014692d71
24 changed files with 1265 additions and 0 deletions

16
src/consts/offsets.asm Normal file
View File

@@ -0,0 +1,16 @@
;const free_ram_start = 8000
pub const offsets.screen = 8000 ; screen size: 80x60 = 4800
pub const offsets.tick_duration_high = 12800
pub const offsets.tick_duration_low = 12804
pub const offsets.next_tick_high = 12808
pub const offsets.next_tick_low = 128012
; State:
; U8 x coord
; U8 y coord
; U8 direction
pub const offsets.state_robot = 12816
pub const offsets.state_ghost = 12819