home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 3
/
CDPDIII.bin
/
pd
/
aga_software
/
animdemo
/
stick.i
< prev
Wrap
Text File
|
1993-01-22
|
720b
|
33 lines
******************************************************************************
*
* (c) Copyright 1993 Commodore-Amiga, Inc. All rights reserved.
*
* This software is provided as-is and is subject to change; no warranties
* are made. All use is at your own risk. No liability or responsibility
* is assumed.
*
* stick.i - joystick structure.
*
*******************************************************************************
include 'exec/types.i'
STRUCTURE JoyStick,0
BYTE stick_up
BYTE stick_down
BYTE stick_left
BYTE stick_right
BYTE stick_fire
BYTE stick_click
BYTE old_stick_fire
BYTE stick_exit
LABEL JoyStick_SIZEOF
LEFT EQU 1
RIGHT EQU 2
UP EQU 4
DOWN EQU 8
FIRE EQU 16
CLICK EQU 32
EXIT EQU 64