Skip to content

Commit

Permalink
Stub out SetMouse vector if building for 128
Browse files Browse the repository at this point in the history
  • Loading branch information
rhalkyard authored and mist64 committed Jul 17, 2019
1 parent b1e15b6 commit 8a08619
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions input/amigamse.s
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ SlowMouse:
jmp _SlowMouse
UpdateMouse:
jmp _UpdateMouse
.ifdef bsw128
SetMouse:
rts
.endif

acceleration:
.byte 3
Expand Down
3 changes: 3 additions & 0 deletions input/joydrv.s
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ SlowMouse:
jmp _SlowMouse
UpdateMouse:
jmp _UpdateMouse
.ifdef bsw128
SetMouse:
rts
.endif

joyStat0:
.byte 0
Expand Down
3 changes: 3 additions & 0 deletions input/lightpen.s
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ SlowMouse:
jmp _SlowMouse
UpdateMouse:
jmp _UpdateMouse
.ifdef bsw128
SetMouse:
rts
.endif

calibMark:
.byte 0
Expand Down
3 changes: 3 additions & 0 deletions input/mse1351.s
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ SlowMouse:
jmp _SlowMouse
UpdateMouse:
jmp _UpdateMouse
.ifdef bsw128
SetMouse:
rts
.endif

tmpFire:
.byte 0
Expand Down

0 comments on commit 8a08619

Please sign in to comment.