Skip to content

Commit

Permalink
Merge pull request #13 from TomHarte/AllocatorCleanliness
Browse files Browse the repository at this point in the history
Attempt to unify and make sense of disparate register allocators.
  • Loading branch information
TomHarte authored Nov 10, 2024
2 parents df8c40e + c73b72e commit 7f52e18
Show file tree
Hide file tree
Showing 13 changed files with 7,084 additions and 7,686 deletions.
2 changes: 1 addition & 1 deletion compile.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
~/Downloads/pyz80-main/pyz80 -I binary/SAMDOS2 --mapfile build/kidd.map -o build/kidd.dsk main.z80s && open -a SimCoupe build/kidd.dsk
~/Downloads/pyz80-main/pyz80 -D BORDER_PROFILING=0 -I binary/SAMDOS2 --mapfile build/kidd.map -o build/kidd.dsk main.z80s && open -a SimCoupe build/kidd.dsk
13 changes: 7 additions & 6 deletions generated/sprites.z80s
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,8 @@
ld (hl), e
add hl, bc

ld (hl), 0x1d
ld a, 0x1d
ld (hl), a
inc l
ld (hl), 0xdc
inc l
Expand All @@ -861,7 +862,7 @@
inc c
add hl, bc

ld (hl), 0x1d
ld (hl), a
inc l
ld (hl), 0xdd
inc l
Expand All @@ -873,9 +874,9 @@

ld (hl), d
inc l
ld (hl), 0x1d
ld (hl), a
inc l
ld (hl), 0x1d
ld (hl), a
inc l
ld (hl), 0xdc
inc l
Expand All @@ -884,7 +885,7 @@

ld (hl), 0x1a
inc l
ld (hl), 0x1d
ld (hl), a
inc l
ld (hl), 0xd1
inc l
Expand All @@ -898,7 +899,7 @@

ld (hl), 0x1a
inc l
ld (hl), 0x1d
ld (hl), a
inc l
ld (hl), 0xdd
inc l
Expand Down
Loading

0 comments on commit 7f52e18

Please sign in to comment.