Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
172 lines (127 loc) · 3.24 KB

SDL_xbiosinterrupt.S

File metadata and controls

172 lines (127 loc) · 3.24 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
22
23
Sam Lantinga
slouken@libsdl.org
*/
/*
Mar 10, 2002
Mar 10, 2002
24
* XBIOS mouse & joystick vectors
25
26
27
28
29
30
*
* Patrice Mandin
*/
.text
Mar 10, 2002
Mar 10, 2002
31
.globl _SDL_AtariXbios_Install
Feb 14, 2004
Feb 14, 2004
32
.globl _SDL_AtariXbios_Restore
Mar 10, 2002
Mar 10, 2002
33
34
.globl _SDL_AtariXbios_MouseVector
.globl _SDL_AtariXbios_JoystickVector
Sep 12, 2006
Sep 12, 2006
36
.globl _SDL_AtariXbios_mouselock
37
38
39
.globl _SDL_AtariXbios_mouseb
.globl _SDL_AtariXbios_mousex
.globl _SDL_AtariXbios_mousey
Mar 10, 2002
Mar 10, 2002
40
.globl _SDL_AtariXbios_joystick
41
42
43
/*--- Vector installer ---*/
Mar 10, 2002
Mar 10, 2002
44
_SDL_AtariXbios_Install:
45
46
47
48
49
50
movel sp@(4),a0
/* Stop interrupts */
movew #0x2700,sr
Mar 10, 2002
Mar 10, 2002
51
/* Save old mouse vector, set our routine */
Feb 14, 2004
Feb 14, 2004
53
clrl oldmousevector
Mar 10, 2002
Mar 10, 2002
54
55
56
57
58
movel sp@(8),d0
beqs no_new_mouse_vector
movel a0@(16),oldmousevector
movel d0,a0@(16)
no_new_mouse_vector:
Mar 10, 2002
Mar 10, 2002
60
/* Save old joystick vector, set our routine */
Feb 14, 2004
Feb 14, 2004
62
clrl oldjoystickvector
Mar 10, 2002
Mar 10, 2002
63
64
65
66
67
movel sp@(12),d0
beqs no_new_joystick_vector
movel a0@(24),oldjoystickvector
movel d0,a0@(24)
no_new_joystick_vector:
68
69
70
71
72
73
74
/* Restart interrupts */
movew #0x2300,sr
rts
Feb 14, 2004
Feb 14, 2004
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*--- Vector restorer ---*/
_SDL_AtariXbios_Restore:
movel sp@(4),a0
/* Stop interrupts */
movew #0x2700,sr
/* Restore mouse vector */
movel oldmousevector,d0
beqs no_restore_mouse
movel d0,a0@(16)
no_restore_mouse:
/* Restore joystick vector */
movel oldjoystickvector,d0
beqs no_restore_joystick
movel d0,a0@(24)
no_restore_joystick:
/* Restart interrupts */
movew #0x2300,sr
rts
104
105
106
107
108
/*--- Our mouse vector ---*/
.text
.even
.ascii "XBRA"
Feb 27, 2002
Feb 27, 2002
109
.ascii "LSDL"
Mar 10, 2002
Mar 10, 2002
110
111
.comm oldmousevector,4*1
_SDL_AtariXbios_MouseVector:
Nov 22, 2004
Nov 22, 2004
112
movel d0,sp@-
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Mouse buttons */
moveb (a0),d0
andw #3,d0
movew d0,_SDL_AtariXbios_mouseb
/* X movement */
moveb a0@(1),d0
extw d0
addw d0,_SDL_AtariXbios_mousex
/* Y movement */
moveb a0@(2),d0
extw d0
addw d0,_SDL_AtariXbios_mousey
Sep 12, 2006
Sep 12, 2006
129
130
131
132
133
134
135
/* Lock mouse position ? */
tstw _SDL_AtariXbios_mouselock
beq.s no_mouse_lock
clrb a0@(1)
clrb a0@(2)
no_mouse_lock:
136
/* Jump through old vector */
Nov 22, 2004
Nov 22, 2004
137
movel sp@+,d0
Nov 22, 2004
Nov 22, 2004
139
movel oldmousevector,sp@-
140
141
142
143
rts
.data
.even
Sep 12, 2006
Sep 12, 2006
144
.comm _SDL_AtariXbios_mouselock,2*1
145
146
147
148
.comm _SDL_AtariXbios_mousex,2*1
.comm _SDL_AtariXbios_mousey,2*1
.comm _SDL_AtariXbios_mouseb,2*1
Mar 10, 2002
Mar 10, 2002
149
150
151
152
153
154
155
156
/*--- Our joystick vector ---*/
.text
.even
.ascii "XBRA"
.ascii "LSDL"
.comm oldjoystickvector,4*1
_SDL_AtariXbios_JoystickVector:
Nov 22, 2004
Nov 22, 2004
157
movel d0,sp@-
Mar 10, 2002
Mar 10, 2002
158
159
/* New joystick state */
May 20, 2005
May 20, 2005
160
moveb a0@(2),d0
Mar 10, 2002
Mar 10, 2002
161
162
163
164
andw #0x8f,d0
movew d0,_SDL_AtariXbios_joystick
/* Jump through old vector */
Nov 22, 2004
Nov 22, 2004
165
movel sp@+,d0
Mar 10, 2002
Mar 10, 2002
166
Nov 22, 2004
Nov 22, 2004
167
movel oldjoystickvector,sp@-
Mar 10, 2002
Mar 10, 2002
168
169
170
171
172
rts
.data
.even
.comm _SDL_AtariXbios_joystick,2*1