SDL_xbiosinterrupt.S
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_xbiosinterrupt.S,v 1.1 2002/04/22 21:38:04 wmay Exp $";
  21. #endif
  22. /*
  23.  * XBIOS mouse & joystick vectors
  24.  *
  25.  * Patrice Mandin
  26.  */
  27. .text
  28. .globl _SDL_AtariXbios_Install
  29. .globl _SDL_AtariXbios_MouseVector
  30. .globl _SDL_AtariXbios_JoystickVector
  31. .globl _SDL_AtariXbios_mouseb
  32. .globl _SDL_AtariXbios_mousex
  33. .globl _SDL_AtariXbios_mousey
  34. .globl _SDL_AtariXbios_joystick
  35. /*--- Vector installer ---*/
  36. _SDL_AtariXbios_Install:
  37. movel sp@(4),a0
  38. /* Stop interrupts */
  39. movew #0x2700,sr
  40. /* Save old mouse vector, set our routine */
  41. movel sp@(8),d0
  42. beqs no_new_mouse_vector
  43. movel a0@(16),oldmousevector
  44. movel d0,a0@(16)
  45. no_new_mouse_vector:
  46. /* Save old joystick vector, set our routine */
  47. movel sp@(12),d0
  48. beqs no_new_joystick_vector
  49. movel a0@(24),oldjoystickvector
  50. movel d0,a0@(24)
  51. no_new_joystick_vector:
  52. /* Restart interrupts */
  53. movew #0x2300,sr
  54. rts
  55. /*--- Our mouse vector ---*/
  56. .text
  57. .even
  58. .ascii "XBRA"
  59. .ascii "LSDL"
  60. .comm oldmousevector,4*1
  61. _SDL_AtariXbios_MouseVector:
  62. moveml d0/a1,sp@-
  63. /* Mouse buttons */
  64. moveb (a0),d0
  65. andw #3,d0
  66. movew d0,_SDL_AtariXbios_mouseb
  67. /* X movement */
  68. moveb a0@(1),d0
  69. extw d0
  70. addw d0,_SDL_AtariXbios_mousex
  71. /* Y movement */
  72. moveb a0@(2),d0
  73. extw d0
  74. addw d0,_SDL_AtariXbios_mousey
  75. /* Jump through old vector */
  76. movel oldmousevector,a1
  77. jsr (a1)
  78. moveml sp@+,d0/a1
  79. rts
  80. .data
  81. .even
  82. .comm _SDL_AtariXbios_mousex,2*1
  83. .even
  84. .comm _SDL_AtariXbios_mousey,2*1
  85. .even
  86. .comm _SDL_AtariXbios_mouseb,2*1
  87. /*--- Our joystick vector ---*/
  88. .text
  89. .even
  90. .ascii "XBRA"
  91. .ascii "LSDL"
  92. .comm oldjoystickvector,4*1
  93. _SDL_AtariXbios_JoystickVector:
  94. moveml d0/a1,sp@-
  95. /* New joystick state */
  96. moveb a0@(1),d0
  97. andw #0x8f,d0
  98. movew d0,_SDL_AtariXbios_joystick
  99. /* Jump through old vector */
  100. movel oldjoystickvector,a1
  101. jsr (a1)
  102. moveml sp@+,d0/a1
  103. rts
  104. .data
  105. .even
  106. .comm _SDL_AtariXbios_joystick,2*1