Home
last modified time | relevance | path

Searched refs:ATARIBIOS_MAXKEYS (Results 1 – 6 of 6) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
DSDL_biosevents.c42 static unsigned char bios_currentkeyboard[ATARIBIOS_MAXKEYS];
43 static unsigned char bios_previouskeyboard[ATARIBIOS_MAXKEYS];
75 SDL_memset(bios_currentkeyboard, 0, ATARIBIOS_MAXKEYS); in AtariBios_PumpEvents()
80 bios_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF; in AtariBios_PumpEvents()
87 for (i=0; i<ATARIBIOS_MAXKEYS; i++) { in AtariBios_PumpEvents()
DSDL_gemdosevents.c44 static unsigned char gemdos_currentkeyboard[ATARIBIOS_MAXKEYS];
45 static unsigned char gemdos_previouskeyboard[ATARIBIOS_MAXKEYS];
76 SDL_memset(gemdos_currentkeyboard, 0, ATARIBIOS_MAXKEYS); in AtariGemdos_PumpEvents()
81 gemdos_currentkeyboard[(key_pressed>>16)&(ATARIBIOS_MAXKEYS-1)]=0xFF; in AtariGemdos_PumpEvents()
88 for (i=0; i<ATARIBIOS_MAXKEYS; i++) { in AtariGemdos_PumpEvents()
DSDL_atarievents.c54 static SDLKey keymap[ATARIBIOS_MAXKEYS];
133 for ( i=0; i<ATARIBIOS_MAXKEYS; i++ ) in SDL_Atari_InitInternalKeymap()
DSDL_atarievents_c.h38 #define ATARIBIOS_MAXKEYS 128 macro
DSDL_ikbdevents.c78 for (i=0; i<ATARIBIOS_MAXKEYS; i++) { in AtariIkbd_PumpEvents()
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
DSDL_gemevents.c47 static unsigned char gem_currentkeyboard[ATARIBIOS_MAXKEYS];
48 static unsigned char gem_previouskeyboard[ATARIBIOS_MAXKEYS];
145 for (i=0; i<ATARIBIOS_MAXKEYS; i++) { in GEM_PumpEvents()
283 scancode=(kc>>8) & (ATARIBIOS_MAXKEYS-1); in do_keyboard()