Skip to content

Latest commit

 

History

History
212 lines (167 loc) · 3.88 KB

SDL_xbiosinterrupt.S

File metadata and controls

212 lines (167 loc) · 3.88 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 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
movel sp@(8),d0
beqs no_new_mouse_vector
Nov 7, 2009
Nov 7, 2009
56
57
58
59
#if defined(__mcoldfire__)
movel a0@(16),d1
movel d1,oldmousevector
#else
Mar 10, 2002
Mar 10, 2002
60
movel a0@(16),oldmousevector
Nov 7, 2009
Nov 7, 2009
61
#endif
Mar 10, 2002
Mar 10, 2002
62
63
movel d0,a0@(16)
no_new_mouse_vector:
Mar 10, 2002
Mar 10, 2002
65
/* Save old joystick vector, set our routine */
Feb 14, 2004
Feb 14, 2004
67
clrl oldjoystickvector
Mar 10, 2002
Mar 10, 2002
68
69
movel sp@(12),d0
beqs no_new_joystick_vector
Nov 7, 2009
Nov 7, 2009
70
71
72
73
#if defined(__mcoldfire__)
movel a0@(24),d1
movel d1,oldjoystickvector
#else
Mar 10, 2002
Mar 10, 2002
74
movel a0@(24),oldjoystickvector
Nov 7, 2009
Nov 7, 2009
75
#endif
Mar 10, 2002
Mar 10, 2002
76
77
movel d0,a0@(24)
no_new_joystick_vector:
78
79
80
81
82
83
84
/* Restart interrupts */
movew #0x2300,sr
rts
Feb 14, 2004
Feb 14, 2004
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*--- 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
114
115
116
117
118
/*--- Our mouse vector ---*/
.text
.even
.ascii "XBRA"
Feb 27, 2002
Feb 27, 2002
119
.ascii "LSDL"
Mar 10, 2002
Mar 10, 2002
120
121
.comm oldmousevector,4*1
_SDL_AtariXbios_MouseVector:
Nov 7, 2009
Nov 7, 2009
122
123
124
125
#if defined(__mcoldfire__)
lea sp@(-8),sp
moveml d0-d1,sp@
#else
Nov 22, 2004
Nov 22, 2004
126
movel d0,sp@-
Nov 7, 2009
Nov 7, 2009
127
#endif
128
129
130
/* Mouse buttons */
moveb (a0),d0
Nov 7, 2009
Nov 7, 2009
131
132
133
#if defined(__mcoldfire__)
andl #3,d0
#else
134
andw #3,d0
Nov 7, 2009
Nov 7, 2009
135
#endif
136
137
138
139
140
movew d0,_SDL_AtariXbios_mouseb
/* X movement */
moveb a0@(1),d0
extw d0
Nov 7, 2009
Nov 7, 2009
141
142
143
144
145
#if defined(__mcoldfire__)
movew _SDL_AtariXbios_mousex,d1
addl d1,d0
movew d0,_SDL_AtariXbios_mousex
#else
146
addw d0,_SDL_AtariXbios_mousex
Nov 7, 2009
Nov 7, 2009
147
#endif
148
149
150
151
/* Y movement */
moveb a0@(2),d0
extw d0
Nov 7, 2009
Nov 7, 2009
152
153
154
155
156
#if defined(__mcoldfire__)
movew _SDL_AtariXbios_mousey,d1
addl d1,d0
movew d0,_SDL_AtariXbios_mousey
#else
157
addw d0,_SDL_AtariXbios_mousey
Nov 7, 2009
Nov 7, 2009
158
#endif
Sep 12, 2006
Sep 12, 2006
160
161
162
163
164
165
166
/* Lock mouse position ? */
tstw _SDL_AtariXbios_mouselock
beq.s no_mouse_lock
clrb a0@(1)
clrb a0@(2)
no_mouse_lock:
167
/* Jump through old vector */
Nov 7, 2009
Nov 7, 2009
168
169
170
171
#if defined(__mcoldfire__)
moveml sp@,d0-d1
lea sp@(8),sp
#else
Nov 22, 2004
Nov 22, 2004
172
movel sp@+,d0
Nov 7, 2009
Nov 7, 2009
173
#endif
Nov 22, 2004
Nov 22, 2004
175
movel oldmousevector,sp@-
176
177
178
179
rts
.data
.even
Sep 12, 2006
Sep 12, 2006
180
.comm _SDL_AtariXbios_mouselock,2*1
181
182
183
184
.comm _SDL_AtariXbios_mousex,2*1
.comm _SDL_AtariXbios_mousey,2*1
.comm _SDL_AtariXbios_mouseb,2*1
Mar 10, 2002
Mar 10, 2002
185
186
187
188
189
190
191
192
/*--- Our joystick vector ---*/
.text
.even
.ascii "XBRA"
.ascii "LSDL"
.comm oldjoystickvector,4*1
_SDL_AtariXbios_JoystickVector:
Nov 22, 2004
Nov 22, 2004
193
movel d0,sp@-
Mar 10, 2002
Mar 10, 2002
194
195
/* New joystick state */
May 20, 2005
May 20, 2005
196
moveb a0@(2),d0
Nov 7, 2009
Nov 7, 2009
197
198
199
#if defined(__mcoldfire__)
andl #0x8f,d0
#else
Mar 10, 2002
Mar 10, 2002
200
andw #0x8f,d0
Nov 7, 2009
Nov 7, 2009
201
#endif
Mar 10, 2002
Mar 10, 2002
202
203
204
movew d0,_SDL_AtariXbios_joystick
/* Jump through old vector */
Nov 22, 2004
Nov 22, 2004
205
movel sp@+,d0
Mar 10, 2002
Mar 10, 2002
206
Nov 22, 2004
Nov 22, 2004
207
movel oldjoystickvector,sp@-
Mar 10, 2002
Mar 10, 2002
208
209
210
211
212
rts
.data
.even
.comm _SDL_AtariXbios_joystick,2*1