Skip to content

Commit

Permalink
Fixing case-insensitive build.
Browse files Browse the repository at this point in the history
  • Loading branch information
flamewing committed Sep 11, 2015
1 parent 5a8e0f8 commit 56da60d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions sonic3k.asm
Expand Up @@ -166,8 +166,8 @@ SetupValues:
dc.w $8000,bytesToLcnt($10000),$100

dc.l Z80_RAM
dc.l Z80_Bus_Request
dc.l Z80_Reset
dc.l Z80_bus_request
dc.l Z80_reset
dc.l VDP_data_port, VDP_control_port

VDPInitValues: ; values for VDP registers
Expand Down Expand Up @@ -206,7 +206,7 @@ Z80StartupCodeBegin: ; loc_2CA:
CPU Z80 ; start assembling Z80 code
phase 0 ; pretend we're at address 0
xor a ; clear a to 0
ld bc,((Z80_RAM_End-Z80_RAM)-zStartupCodeEndLoc)-1 ; prepare to loop this many times
ld bc,((Z80_RAM_end-Z80_RAM)-zStartupCodeEndLoc)-1 ; prepare to loop this many times
ld de,zStartupCodeEndLoc+1 ; initial destination address
ld hl,zStartupCodeEndLoc ; initial source address
ld sp,hl ; set the address the stack starts at
Expand Down Expand Up @@ -151247,8 +151247,6 @@ loc_6E4F2:
lea ObjDat3_6ED84(pc),a1
jsr (SetUp_ObjAttributes).l
move.b #8,$29(a0)

loc_6E502:
move.w $14(a0),$3A(a0)
move.w #$7F,$2E(a0)
move.l #loc_6E55E,$34(a0)
Expand Down

0 comments on commit 56da60d

Please sign in to comment.