├── LICENSE ├── Makefile ├── bios.ld ├── bootmenu.s ├── calendar.s ├── card.s ├── checksum.s ├── checksumgen.c ├── colorpicker.s ├── compat.txt ├── configmenu.s ├── credit.s ├── defines.inc ├── displogo.s ├── exceptions.s ├── features.txt ├── gamelist.s ├── games ├── 2020bb.s ├── 3countb.s ├── alpham2.s ├── androdun.s ├── aodk.s ├── aof.s ├── aof2.s ├── aof3.s ├── bakatono.s ├── bangbead.s ├── bjourney.s ├── blazstar.s ├── breakers.s ├── breakrev.s ├── bstars.s ├── bstars2.s ├── burningf.s ├── crsword.s ├── ctomaday.s ├── cyberlip.s ├── diggerma.s ├── doubledr.s ├── eightman.s ├── fatfursp.s ├── fatfury1.s ├── fatfury2.s ├── fatfury3.s ├── fbfrenzy.s ├── fightfev.s ├── flipshot.s ├── fswords.s ├── galaxyfg.s ├── ganryu.s ├── garou.s ├── ghostlop.s ├── goalx3.s ├── gowcaizr.s ├── gpilots.s ├── gururin.s ├── irrmaze.s ├── janshin.s ├── jockeygp.s ├── joyjoy.s ├── kabukikl.s ├── karnovr.s ├── kizuna.s ├── kof2000.s ├── kof2001.s ├── kof2002.s ├── kof2003.s ├── kof94.s ├── kof95.s ├── kof96.s ├── kof97.s ├── kof98.s ├── kof99.s ├── kog.s ├── kotm.s ├── kotm2.s ├── lans2004.s ├── lastblad.s ├── lastbld2.s ├── lastsold.s ├── lbowling.s ├── legendos.s ├── lresort.s ├── magdrop2.s ├── magdrop3.s ├── maglord.s ├── mahretsu.s ├── marukodq.s ├── matrim.s ├── miexchng.s ├── minasan.s ├── mosyougi.s ├── mslug.s ├── mslug2.s ├── mslug3.s ├── mslug4.s ├── mslug5.s ├── mslugx.s ├── mutnat.s ├── nam1975.s ├── ncombat.s ├── ncommand.s ├── neobombe.s ├── neocup98.s ├── neodrift.s ├── neomrdo.s ├── ninjamas.s ├── nitd.s ├── overtop.s ├── panicbom.s ├── pbobbl2n.s ├── pbobblen.s ├── pgoal.s ├── pnyaa.s ├── popbounc.s ├── preisle2.s ├── pspikes2.s ├── pulstar.s ├── puzzldpr.s ├── puzzledp.s ├── quizdai2.s ├── quizdais.s ├── quizkof.s ├── ragnagrd.s ├── rbff1.s ├── rbff2.s ├── rbffspec.s ├── ridhero.s ├── roboarmy.s ├── rotd.s ├── s1945p.s ├── samsh5sp.s ├── samsho.s ├── samsho2.s ├── samsho3.s ├── samsho4.s ├── samsho5.s ├── savagere.s ├── sdodgeb.s ├── sengoku.s ├── sengoku2.s ├── sengoku3.s ├── shocktr2.s ├── shocktro.s ├── socbrawl.s ├── sonicwi2.s ├── sonicwi3.s ├── spinmast.s ├── ssideki.s ├── ssideki2.s ├── ssideki3.s ├── ssideki4.s ├── stakwin.s ├── stakwin2.s ├── strhoop.s ├── superspy.s ├── svc.s ├── svcplus.s ├── tophuntr.s ├── tpgolf.s ├── trally.s ├── turfmast.s ├── twinspri.s ├── tws96.s ├── viewpoin.s ├── vliner.s ├── vlinero.s ├── wakuwak7.s ├── wh1.s ├── wh2.s ├── wh2j.s ├── whp.s ├── wjammers.s ├── zedblade.s ├── zintrckb.s └── zupapa.s ├── graphics.s ├── header.s ├── howtoplay.s ├── hwtest.s ├── ingamemenu.s ├── io.s ├── logomap.inc ├── softdips.s ├── sram.s └── system.s /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015, neogeodev <> 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | 15 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2011 Emmanuel Vadot 3 | # Copyright (c) 2011 Furrtek 4 | # 5 | # Permission to use, copy, modify, and distribute this software for any 6 | # purpose with or without fee is hereby granted, provided that the above 7 | # copyright notice and this permission notice appear in all copies. 8 | # 9 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | 17 | # $Id: Makefile,v 1.23 2011/11/12 10:02:40 elbarto Exp $ 18 | 19 | AS= m68k-elf-as 20 | GCC= m68k-elf-gcc 21 | LD= m68k-elf-ld 22 | OBJC= m68k-elf-objcopy 23 | DD= dd 24 | CHKSUM= ./checksumgen 25 | RM= rm -f 26 | 27 | HOST_CC= gcc 28 | 29 | NAME= neopenbios 30 | 31 | SRCS= header.s \ 32 | bootmenu.s \ 33 | calendar.s \ 34 | card.s \ 35 | checksum.s \ 36 | colorpicker.s \ 37 | configmenu.s \ 38 | credit.s \ 39 | displogo.s \ 40 | exceptions.s \ 41 | gamelist.s \ 42 | graphics.s \ 43 | howtoplay.s \ 44 | hwtest.s \ 45 | ingamemenu.s \ 46 | io.s \ 47 | softdips.s \ 48 | sram.s \ 49 | system.s 50 | 51 | OBJS= $(SRCS:.s=.o) 52 | 53 | CHKSUM_SRC= checksumgen.c 54 | CHKSUM_OBJ= $(CHKSUM_SRC:.c=.o) 55 | 56 | AFLAGS= -mcpu=68000 --register-prefix-optional 57 | LDFLAGS= -Tbios.ld -Map $(NAME).map 58 | 59 | $(NAME).bin: $(CHKSUM) $(OBJS) 60 | $(LD) $(LDFLAGS) $(OBJS) -o $(NAME).elf 61 | $(OBJC) -Obinary --pad-to=0xC20000 $(NAME).elf $(NAME).swap 62 | $(DD) if=$(NAME).swap of=$(NAME).bin conv=swab 63 | $(CHKSUM) $(NAME).bin 64 | 65 | $(CHKSUM): $(CHKSUM_OBJ) 66 | $(HOST_CC) $(CHKSUM_OBJ) -o $(CHKSUM) 67 | 68 | clean: 69 | $(RM) $(OBJS) $(NAME).bin $(NAME).elf $(NAME).map $(NAME).swap *~ *# 70 | $(RM) $(CHKSUM_OBJ) $(CHKSUM) 71 | 72 | .s.o: 73 | $(AS) $(AFLAGS) -o $@ $< 74 | 75 | .c.o: 76 | $(HOST_CC) -c -o $@ $< 77 | 78 | .PHONY: clean 79 | 80 | $(SRCS): defines.inc 81 | 82 | gamelist.o: games/2020bb.s games/3countb.s games/alpham2.s games/androdun.s games/aodk.s games/aof.s games/aof2.s games/aof3.s games/bakatono.s games/bangbead.s games/bjourney.s games/blazstar.s games/breakers.s games/breakrev.s games/bstars.s games/bstars2.s games/burningf.s games/crsword.s games/ctomaday.s games/cyberlip.s games/diggerma.s games/doubledr.s games/eightman.s games/fatfursp.s games/fatfury1.s games/fatfury2.s games/fatfury3.s games/fbfrenzy.s games/fightfev.s games/flipshot.s games/fswords.s games/galaxyfg.s games/ganryu.s games/garou.s games/ghostlop.s games/goalx3.s games/gowcaizr.s games/gpilots.s games/gururin.s games/irrmaze.s games/janshin.s games/jockeygp.s games/joyjoy.s games/kabukikl.s games/karnovr.s games/kizuna.s games/kof2000.s games/kof2001.s games/kof2002.s games/kof2003.s games/kof94.s games/kof95.s games/kof96.s games/kof97.s games/kof98.s games/kof99.s games/kog.s games/kotm.s games/kotm2.s games/lans2004.s games/lastblad.s games/lastbld2.s games/lastsold.s games/lbowling.s games/legendos.s games/lresort.s games/magdrop2.s games/magdrop3.s games/maglord.s games/mahretsu.s games/marukodq.s games/matrim.s games/miexchng.s games/minasan.s games/mosyougi.s games/mslug.s games/mslug2.s games/mslug3.s games/mslug4.s games/mslug5.s games/mslugx.s games/mutnat.s games/nam1975.s games/ncombat.s games/ncommand.s games/neobombe.s games/neocup98.s games/neodrift.s games/neomrdo.s games/ninjamas.s games/nitd.s games/overtop.s games/panicbom.s games/pbobbl2n.s games/pbobblen.s games/pgoal.s games/pnyaa.s games/popbounc.s games/preisle2.s games/pspikes2.s games/pulstar.s games/puzzldpr.s games/puzzledp.s games/quizdai2.s games/quizdais.s games/quizkof.s games/ragnagrd.s games/rbff1.s games/rbff2.s games/rbffspec.s games/ridhero.s games/roboarmy.s games/rotd.s games/s1945p.s games/samsho.s games/samsho2.s games/samsho3.s games/samsho4.s games/samsho5.s games/savagere.s games/sdodgeb.s games/sengoku.s games/sengoku2.s games/sengoku3.s games/shocktr2.s games/shocktro.s games/socbrawl.s games/sonicwi2.s games/sonicwi3.s games/spinmast.s games/ssideki.s games/ssideki2.s games/ssideki3.s games/ssideki4.s games/stakwin.s games/stakwin2.s games/strhoop.s games/superspy.s games/svc.s games/svcplus.s games/tophuntr.s games/tpgolf.s games/trally.s games/turfmast.s games/twinspri.s games/tws96.s games/viewpoin.s games/vliner.s games/vlinero.s games/wakuwak7.s games/wh1.s games/wh2.s games/whp.s games/wjammers.s games/zedblade.s games/zintrckb.s games/zupapa.s 83 | -------------------------------------------------------------------------------- /bios.ld: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Sean Gonsalves 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: bios.ld,v 1.5 2011/09/30 14:51:50 elbarto Exp $ */ 19 | 20 | OUTPUT_ARCH(m68k) 21 | __DYNAMIC = 0; 22 | 23 | MEMORY 24 | { 25 | rom : ORIGIN = 0x00C00000, LENGTH = 0x00020000 26 | ram : ORIGIN = 0x0010F300, LENGTH = 0x000F0D00 27 | } 28 | 29 | PROVIDE (__stack = 0x0010F300); 30 | 31 | SECTIONS 32 | { 33 | .text 0x00C00000: 34 | { 35 | *(.text) 36 | . = ALIGN(0x4); 37 | *(.rodata) 38 | . = ALIGN(0x4); 39 | _text_end = .; 40 | } > rom 41 | 42 | .data 0x0010F300: 43 | AT (ADDR(.text) + SIZEOF(.text) ) 44 | { 45 | *(.shdata) 46 | *(.data) 47 | } > ram 48 | _data_size = SIZEOF(.data); 49 | 50 | .bss 0x0010F300 + SIZEOF(.data): 51 | { 52 | *(.shbss) 53 | *(.bss) 54 | } > ram 55 | _bss_size = SIZEOF(.bss); 56 | } 57 | -------------------------------------------------------------------------------- /calendar.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: calendar.s,v 1.3 2011/11/08 02:59:14 furrtek Exp $ */ 19 | 20 | .global read_calendar 21 | .global setup_calendar 22 | 23 | read_calendar: 24 | /* Sets possible values, just to be sure no games check this */ 25 | lea 0x10FDD2,a0 26 | move.b #0x99,(a0)+ | Year 27 | move.b #0x01,(a0)+ | Month 28 | move.b #0x02,(a0)+ | Day 29 | move.b #0x04,(a0)+ | Week day 30 | move.b #0x09,(a0)+ | Hour 31 | move.b #0x34,(a0)+ | Minute 32 | move.b #0x55,(a0) | Seconds 33 | rts 34 | 35 | setup_calendar: 36 | rts 37 | -------------------------------------------------------------------------------- /card.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | .global card 19 | .global card_error 20 | 21 | card: 22 | rts 23 | 24 | card_error: 25 | rts 26 | -------------------------------------------------------------------------------- /checksum.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: checksum.s,v 1.4 2011/11/08 02:59:14 furrtek Exp $ */ 19 | 20 | .include "defines.inc" 21 | 22 | .global selfcheck 23 | 24 | selfcheck: 25 | /* Checksum verification */ 26 | clr.l d2 27 | clr.w d0 28 | lea 0xC00000,a0 29 | move.l #0x80-1,d1 30 | 1: 31 | move.b (a0)+,d0 32 | add.w d0,d2 33 | dbra d1,1b | First 80 bytes 34 | 35 | lea 0xC00082,a0 36 | move.l #0x20000-0x82-1,d1 37 | 1: 38 | move.b (a0)+,d0 39 | add.w d0,d2 40 | dbra d1,1b | Rest 41 | 42 | cmp.w (0xC00080),d2 43 | beq 2f 44 | 45 | move.b d0,(REG_DIPSW) 46 | move.w #BLACK,(PALETTES+(32*1)+0) | Text palette 1 47 | move.w #WHITE,(PALETTES+(32*1)+2) 48 | move.w #BLACK,(PALETTES+(32*2)+0) | Text palette 2 49 | move.w #RED,(PALETTES+(32*2)+2) 50 | move.w #0x2000,d2 51 | lea Warn1,a0 52 | jsr text16_out 53 | move.w #0x1000,d2 54 | lea Warn2,a0 55 | jsr text8_out 56 | 1: 57 | move.b d0,(REG_DIPSW) | Display error message and stay in loop 58 | bra 1b 59 | 2: 60 | rts 61 | 62 | .section .rodata 63 | .align 4 64 | Warn1: 65 | dc.w FIXMAP+(32*4)+10 66 | .string "ERROR: BIOS CHECKSUM FAIL" 67 | .align 4 68 | Warn2: 69 | dc.w FIXMAP+(32*4)+13 70 | .string "The BIOS code has been found\xFFto be invalid.\xFFThis can lead to errors and/or\xFF\data loss.\xFF\xFFPlease refer to a qualified\xFFtechnician for BIOS replacement\xFFor hardware repair." 71 | -------------------------------------------------------------------------------- /checksumgen.c: -------------------------------------------------------------------------------- 1 | // Checksum generator for the Neopen bios 2 | // Last mod: furrtek 22/10/2011 3 | #include 4 | #include 5 | #include 6 | 7 | int main(int argc, char *argv[]) 8 | { 9 | char ch; 10 | FILE *romfile; 11 | int short checksum=0; //16bits 12 | int size; 13 | 14 | if (argc != 2) { 15 | puts("Usage: checksumgen flippedrom.bin\n"); 16 | } else { 17 | romfile = fopen(argv[1],"r+b"); 18 | if (!romfile) { 19 | write("Can't open %s\n",argv[1]); 20 | return 1; 21 | } 22 | 23 | fseek(romfile,0,SEEK_SET); 24 | 25 | for (size=0;size<0x80;size++) { 26 | checksum += fgetc(romfile); 27 | } 28 | 29 | fseek(romfile,0x82,SEEK_SET); 30 | 31 | for (size=0;size<0x20000-0x82;size++) { 32 | checksum += fgetc(romfile); 33 | } 34 | 35 | printf("Checksum: %X\n",checksum & 0xFFFF); 36 | 37 | fseek(romfile,0x80,SEEK_SET); 38 | 39 | fwrite(&checksum,sizeof(int short),1,romfile); 40 | 41 | fclose(romfile); 42 | } 43 | return 0; 44 | } 45 | -------------------------------------------------------------------------------- /credit.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | .include "defines.inc" 19 | 20 | .global credit_check 21 | .global credit_down 22 | .global check_coin 23 | 24 | /*! DEF check_coin 25 | \brief Checks if coins have been deposited and increments credits if so 26 | */ 27 | 28 | check_coin: 29 | move.b (REG_STATUS_A),d0 | save actual HW read 30 | move.b (PREV_COIN),d1 | get previous 31 | not.b d0 | invert HW read 32 | move.b d0,(PREV_COIN) | set previous=actual 33 | eor.b d0,d1 | keep difference 34 | and.b d0,d1 | keep only rising edge 35 | andi.w #0x3, d1 36 | btst.b #0,d1 | Coin 1 37 | beq 1f 38 | move.b (SRAM_COIN1), d0 39 | abcd d1, d0 40 | move.b d0, (SRAM_COIN1) 41 | jsr (COIN_SOUND) 42 | 1: 43 | btst.b #1, d1 | Coin 2 44 | beq 1f 45 | moveq #1, d1 46 | move.b (SRAM_COIN1), d0 47 | abcd d1, d0 48 | move.b d0, (SRAM_COIN1) 49 | jsr (COIN_SOUND) 50 | 1: 51 | rts 52 | 53 | 54 | credit_check: 55 | tst.b (BIOS_MVS_FLAG) 56 | beq 1f 57 | move.b (REG_DIPSW), d0 58 | and.b #0x40, d0 59 | beq 1f 60 | movea.l CREDIT_DEC_P1, a0 61 | move.b (SRAM_COIN1), (CREDIT_DEC_P1) 62 | move.b (SRAM_COIN2), (CREDIT_DEC_P2) 63 | 1: 64 | rts 65 | 66 | credit_down: 67 | rts 68 | 69 | .section .bss 70 | PREV_COIN: .byte 0 71 | -------------------------------------------------------------------------------- /defines.inc: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Sean Gonsalves 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: defines.inc,v 1.16 2011/11/14 19:17:46 furrtek Exp $ */ 19 | 20 | REG_P1CNT = 0x300000 21 | REG_DIPSW = 0x300001 22 | REG_WATCHDOG = 0x300001 23 | REG_TESTW = 0x300081 24 | REG_SOUND = 0x320000 25 | REG_STATUS_A = 0x320001 26 | REG_P2CNT = 0x340000 27 | REG_STATUS_B = 0x380000 28 | REG_POUTPUT = 0x380001 29 | REG_CRDBANK = 0x380011 30 | REG_SLOT = 0x380021 31 | REG_LEDLATCHES = 0x380031 32 | REG_LEDDATA = 0x380041 33 | REG_RTCCTRL = 0x380051 34 | 35 | REG_NOSHADOW = 0x3A0001 36 | REG_SHADOW = 0x3A0011 37 | REG_SWPBIOS = 0x3A0003 38 | REG_SWPROM = 0x3A0013 39 | REG_CRDUNLOCK1 = 0x3A0005 40 | REG_CRDLOCK1 = 0x3A0015 41 | REG_CRDLOCK2 = 0x3A0007 42 | REG_CRDUNLOCK2 = 0x3A0017 43 | REG_CRDREGSEL = 0x3A0009 44 | REG_CRDNORMAL = 0x3A0019 45 | REG_BRDFIX = 0x3A000B 46 | REG_CRTFIX = 0x3A001B 47 | REG_SRAMLOCK = 0x3A000D 48 | REG_SRAMUNLOCK = 0x3A001D 49 | REG_PALBANK1 = 0x3A000F 50 | REG_PALBANK0 = 0x3A001F 51 | 52 | REG_VRAMADDR = 0x3C0000 53 | REG_VRAMRW = 0x3C0002 54 | REG_VRAMMOD = 0x3C0004 55 | REG_LSPCMODE = 0x3C0006 56 | REG_TIMERHIGH = 0x3C0008 57 | REG_TIMERLOW = 0x3C000A 58 | REG_IRQACK = 0x3C000C 59 | REG_TIMERSTOP = 0x3C000E 60 | 61 | BIOS_SYSTEM_MODE = 0x10FD80 62 | BIOS_MVS_FLAG = 0x10FD82 63 | BIOS_COUNTRY_CODE = 0x10FD83 64 | BIOS_GAME_DIP = 0x10FD84 65 | BIOS_DEVMODE = 0x10FE80 66 | 67 | BIOS_P1CURRENT = 0x10FD95 68 | BIOS_P1PREVIOUS = 0x10FD96 69 | BIOS_P1CHANGE = 0x10FD97 70 | BIOS_P1REPEAT = 0x10FD98 71 | BIOS_P1TIMER = 0x10FD99 72 | 73 | BIOS_USER_REQUEST = 0x10FDAE 74 | BIOS_USER_MODE = 0x10FDAF 75 | 76 | BIOS_START_FLAG = 0x10FDB4 77 | 78 | BIOS_FRAME_COUNTER = 0x10FEE4 79 | 80 | INPUT_1 = 0x10FD94 81 | INPUT_2 = 0x10FD9A 82 | INPUT_3 = 0x10FDA0 83 | INPUT_4 = 0x10FDA6 84 | INPUT_S = 0x10FDAC 85 | 86 | VSYNC_FLAG = 0x10FE8C 87 | 88 | RAMSTART = 0x100000 89 | PALETTES = 0x400000 90 | BACKDROPCOLOR = 0x401FFE 91 | 92 | FIXMAP = 0x7000 93 | SCB1 = 0x0000 94 | SCB2 = 0x8000 95 | SCB3 = 0x8200 96 | SCB4 = 0x8400 97 | 98 | BLACK = 0x8000 99 | WHITE = 0x7FFF 100 | RED = 0x4F00 101 | GREEN = 0x20F0 102 | BLUE = 0x100F 103 | 104 | SRAM_COIN1 = 0xD00034 105 | SRAM_COIN2 = 0xD00035 106 | 107 | SRAM_FIRSTCOLOR = 0xD00036 108 | SRAM_SECONDCOLOR = 0xD00038 109 | SRAM_THIRDCOLOR = 0xD00040 110 | 111 | SRAM_COINS_P1_NEEDED = 0xD0003A 112 | SRAM_CREDITS_P1_ADDED = 0xD0003B 113 | SRAM_COINS_P2_NEEDED = 0xD0003C 114 | SRAM_CREDITS_P2_ADDED = 0xD0003D 115 | 116 | SRAM_SYSTEM = 0xD0003E 117 | SRAM_REGION = 0xD0003F 118 | 119 | 120 | SRAM_GAMESELECT = 0xD00042 121 | SRAM_STARTCOMPULSION = 0xD00044 122 | SRAM_SOUND_STOP = 0xD00046 123 | 124 | SRAM_LOGOCOLOR = 0xD00048 | Warning: may be used by original BIOS ! 125 | SRAM_CUSTOMMESSAGE = 0xD0FFF0 | To move ! 126 | 127 | CREDIT_DEC_P1 = 0x10FDB0 128 | CREDIT_DEC_P2 = 0x10FDB1 129 | 130 | FLAG_EYECATCH = 0x000114 131 | USER = 0x000122 132 | PLAYER_START = 0x000128 133 | COIN_SOUND = 0x000134 134 | 135 | FLAG_INGAME = 0x01 136 | 137 | TEXTCOLOR = 0x000F 138 | -------------------------------------------------------------------------------- /displogo.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: displogo.s,v 1.3 2011/10/27 10:46:17 furrtek Exp $ */ 19 | 20 | .include "defines.inc" 21 | 22 | .global displogo_map 23 | .global displogo_ms2 24 | 25 | displogo_map: 26 | /* Display fix logo of game, palette at (a0), map/sizes at (a0+4) */ 27 | move.b d0,(REG_CRTFIX) 28 | 29 | movea.l (a0)+,a1 30 | lea PALETTES+(32*0xF),a2 31 | move.l #16-1,d7 32 | 1: 33 | move.w (a1)+,(a2)+ 34 | dbra d7,1b 35 | 36 | movea.l (a0)+,a1 37 | move.w #FIXMAP+(32*4)+21,d1 38 | move.w #32,REG_VRAMMOD 39 | moveq.l #0,d2 40 | moveq.l #0,d3 41 | move.w (a1)+,d2 | Height 42 | move.w (a1)+,d3 | Width 43 | 2: 44 | move.w d1,REG_VRAMADDR 45 | move.l d3,d4 46 | 3: 47 | move.w (a1)+,d0 48 | ori.w #0xF000,d0 49 | move.w d0,REG_VRAMRW 50 | dbra d4,3b 51 | dbra d2,2b 52 | rts 53 | -------------------------------------------------------------------------------- /exceptions.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | .include "defines.inc" 19 | 20 | .global err_divzero 21 | .global err_addr 22 | .global err_illegal 23 | .global err_bus 24 | 25 | ERRORBOX_X = 10 26 | ERRORBOX_Y = 9 27 | 28 | err_divzero: 29 | move.l 2(a7),(PCERROR) 30 | movem.l d0-d7/a0-a6,-(a7) 31 | lea text_divzero,a0 32 | jmp DispErr 33 | 34 | err_addr: 35 | move.l 10(a7),(PCERROR) 36 | movem.l d0-d7/a0-a6,-(a7) 37 | lea text_addr,a0 38 | jmp DispErr 39 | 40 | err_illegal: 41 | move.l 2(a7),(PCERROR) 42 | movem.l d0-d7/a0-a6,-(a7) 43 | lea text_illegal,a0 44 | jmp DispErr 45 | 46 | err_bus: 47 | move.l 10(a7),(PCERROR) 48 | movem.l d0-d7/a0-a6,-(a7) 49 | lea text_bus,a0 50 | jmp DispErr 51 | 52 | 53 | |Do not use a0 until first text8_out here 54 | DispErr: 55 | move.b d0,(REG_DIPSW) 56 | ori.w #0x0700,sr 57 | 58 | |Def palette 15 59 | move.w #BLACK,(BACKDROPCOLOR) 60 | move.w #RED,(PALETTES+(15*32)+2) 61 | move.w #0x0FB8,(PALETTES+(15*32)+4) 62 | |Def palette 14 63 | move.w #BLACK,(BACKDROPCOLOR) 64 | move.w #0x0400,(PALETTES+(14*32)+2) 65 | move.w #0x0FB8,(PALETTES+(14*32)+4) 66 | 67 | move.w #FIXMAP+ERRORBOX_Y+(ERRORBOX_X*32),d2 68 | move.l #14,d1 69 | move.w #0x20,(REG_VRAMMOD) 70 | .clfixlperrout: 71 | move.w d2,(REG_VRAMADDR) 72 | move.l #20,d0 73 | .clfixlperrin: 74 | move.w #0xF320,(REG_VRAMRW) | Palette $F, tile $320 75 | move.b d0,(REG_DIPSW) 76 | dbra d0,.clfixlperrin 77 | addi.w #1,d2 78 | dbra d1,.clfixlperrout 79 | 80 | move.w #0xF000,d2 81 | jsr text8_out 82 | lea text_defs,a0 83 | move.w #0xF000,d2 84 | jsr text8_out 85 | 86 | move.l #FIXMAP+ERRORBOX_Y+6+((ERRORBOX_X+1)*32),d3 87 | move.l #8-1,d2 88 | .printdataregs: 89 | move.w d3,(REG_VRAMADDR) 90 | move.l (a7)+,d0 91 | jsr WriteRegister 92 | addi.w #1,d3 93 | dbra d2,.printdataregs 94 | 95 | move.l #FIXMAP+ERRORBOX_Y+6+((ERRORBOX_X+11)*32),d3 96 | move.l #7-1,d2 97 | .printaddrregs: 98 | move.w d3,(REG_VRAMADDR) 99 | move.l (a7)+,d0 100 | jsr WriteRegister 101 | addi.w #1,d3 102 | dbra d2,.printaddrregs 103 | 104 | move.w #FIXMAP+ERRORBOX_Y+3+((ERRORBOX_X+4)*32),(REG_VRAMADDR) 105 | move.l (PCERROR),d0 106 | jsr WriteRegister 107 | lp: 108 | move.b d0,(REG_DIPSW) 109 | jmp lp 110 | 111 | 112 | WriteRegister: 113 | move.w #0x20,(REG_VRAMMOD) 114 | move.l d0,d1 115 | move.l #8-1,d7 116 | .writerlp: 117 | move.b d0,(REG_DIPSW) 118 | andi.l #0xF0000000,d0 119 | rol.l #4,d0 120 | jsr hexshift 121 | addi.w #0x30,d0 122 | ori.w #0xE000,d0 |Palette $E 123 | move.w d0,(REG_VRAMRW) 124 | lsl.l #4,d1 125 | move.l d1,d0 126 | dbra d7,.writerlp 127 | rts 128 | 129 | hexshift: 130 | cmp.b #0xA,d0 131 | blt.b .r 132 | addq.w #7,d0 133 | .r: 134 | rts 135 | 136 | .align 2 137 | text_defs: 138 | dc.w FIXMAP+ERRORBOX_Y+3+((ERRORBOX_X+1)*32) 139 | .string "PC:\xFF\xFF\D0-D6: A0-A6:" 140 | .align 2 141 | text_addr: 142 | dc.w FIXMAP+ERRORBOX_Y+1+((ERRORBOX_X+1)*32) 143 | .string "ADDRESS ERROR\0" 144 | .align 2 145 | text_divzero: 146 | dc.w FIXMAP+ERRORBOX_Y+1+((ERRORBOX_X+1)*32) 147 | .string "DIVIDE BY ZERO\0" 148 | .align 2 149 | text_illegal: 150 | dc.w FIXMAP+ERRORBOX_Y+1+((ERRORBOX_X+1)*32) 151 | .string "ILLEGAL INSTRUCTION\0" 152 | .align 2 153 | text_bus: 154 | dc.w FIXMAP+ERRORBOX_Y+1+((ERRORBOX_X+1)*32) 155 | .string "BUS ERROR\0" 156 | 157 | .bss 158 | PCERROR: .long 0 159 | -------------------------------------------------------------------------------- /features.txt: -------------------------------------------------------------------------------- 1 | TODO: 2 | 3 | - Properly use SYSTEM_RETURN, games freeze in their attract loop 4 | - SRAM sanitizing and initialization 5 | - Debug dips management 6 | - Pause (with music pause) 7 | - Cheats (Pugsy's cheats) 8 | - Action Replay 9 | - Versus Mode 10 | - Hardware test 11 | - Memory card management 12 | - Soft DIPs management (done) 13 | - Hiscore saving 14 | - Music Player 15 | - Cabinet link test -------------------------------------------------------------------------------- /games/2020bb.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_30: 19 | .string "Super Baseball 2020 " 20 | .string "Super Baseball 2020 " 21 | .string "Super Baseball 2020 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/3countb.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | gamename_43: 21 | .byte 0xDB, 0xEE, 0xC1, 0xE3, 0xF9, 0x20, 0xCC, 0xF9, 0xDB, 0xF8, 0xE9, 0xF6, 0xC7, 0xCC, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 22 | .string "3 Count Bout " 23 | .string "3 Count Bout " 24 | .long 0x0 25 | .long 0x0 26 | -------------------------------------------------------------------------------- /games/alpham2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_7: 19 | .string "ASO II:Last Guardian " 20 | .string "Alpha Mission 2 " 21 | .string "Alpha Mission 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/androdun.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_49: 19 | .string "Andro Dunos " 20 | .string "Andro Dunos " 21 | .string "Andro Dunos " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/aodk.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_74: 19 | .byte 0x20, 0x91, 0x82, 0x85, 0x81, 0x20, 0xC5, 0xF7, 0xED, 0xC5, 0xF7, 0xED, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Aggressors of Dark. " 21 | .string "Aggressors of Dark. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/aof.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_44: 19 | .string "Ryuuko no Ken " 20 | .string "Art of Fighting " 21 | .string "Art of Fighting " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/aof2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_56: 19 | .string "Ryuuko no Ken 2 " 20 | .string "Art of Fighting 2 " 21 | .string "Art of Fighting 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/aof3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_96: 19 | .string "Ryuuko no Ken Gaiden " 20 | .string "Art of Fighting 3 " 21 | .string "Art of Fighting 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/bakatono.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_36: 19 | .byte 0xD9, 0xF7, 0xC5, 0xD3, 0xF7, 0xD8, 0xCA, 0xDE, 0xDE, 0xF9, 0xCB, 0xF7, 0xF3, 0xED, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Mahjong Bakatonosam. " 21 | .string "Mahjong Bakatonosam. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/bangbead.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_259: 19 | .string "Bang Bead " 20 | .string "Bang Bead " 21 | .string "Bang Bead " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/bjourney.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_22: 19 | .string "Raguy " 20 | .string "Blue's Journey " 21 | .string "Blue's Journey " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/blazstar.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_239: 19 | .string "Blazing Star " 20 | .string "Blazing Star " 21 | .string "Blazing Star " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/breakers.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_230: 19 | .string "Breakers " 20 | .string "Breakers " 21 | .string "Breakers " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/breakrev.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_245: 19 | .string "Breakers Revenge " 20 | .string "Breakers Revenge " 21 | .string "Breakers Revenge " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/bstars.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_2: 19 | .string "Baseball Stars Pro " 20 | .string "Baseball Stars Pro " 21 | .string "Baseball Stars Pro " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/bstars2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_41: 19 | .string "Baseball Stars 2 " 20 | .string "Baseball Stars 2 " 21 | .string "Baseball Stars 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/burningf.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_18: 19 | .string "Burning Fight " 20 | .string "Burning Fight " 21 | .string "Burning Fight " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/crsword.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_37: 19 | .string "Crossed Swords " 20 | .string "Crossed Swords " 21 | .string "Crossed Swords " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ctomaday.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_249: 19 | .string "Captain Tomaday " 20 | .string "Captain Tomaday " 21 | .string "Captain Tomaday " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/cyberlip.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_10: 19 | .string "Cyber Lip " 20 | .string "Cyber Lip " 21 | .string "Cyber Lip " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/diggerma.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | -------------------------------------------------------------------------------- /games/doubledr.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_82: 19 | .string "Double Dragon " 20 | .string "Double Dragon " 21 | .string "Double Dragon " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/eightman.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_25: 19 | .string "8 Man " 20 | .string "Eight Man " 21 | .string "Eight Man " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fatfursp.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_58: 19 | .byte 0x85, 0xB7, 0xAA, 0x82, 0x92, 0xB7, 0xAD, 0x8D, 0x91, 0x53, 0x50, 0x45, 0x43, 0x49, 0x41, 0x4C, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Fatal Fury Special " 21 | .string "Fatal Fury Special " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fatfury1.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_33: 19 | .byte 0x85, 0xB7, 0xAA, 0x82, 0x92, 0xB7, 0xAD, 0x8D, 0x91, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Fatal Fury " 21 | .string "Fatal Fury " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fatfury2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_47: 19 | .byte 0x85, 0xB7, 0xAA, 0x82, 0x92, 0xB7, 0xAD, 0x8D, 0x91, 0x32, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Fatal Fury 2 " 21 | .string "Fatal Fury 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fatfury3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_69: 19 | .byte 0x85, 0xB7, 0xAA, 0x82, 0x92, 0xB7, 0xAD, 0x8D, 0x91, 0x33, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Fatal Fury 3 " 21 | .string "Fatal Fury 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fbfrenzy.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_34: 19 | .string "Football Frenzy " 20 | .string "Football Frenzy " 21 | .string "Football Frenzy " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fightfev.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_60: 19 | .string "Fight Fever " 20 | .string "Fight Fever " 21 | .string "Fight Fever " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/flipshot.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_247: 19 | .string "Flip Shot " 20 | .string "Flip Shot " 21 | .string "Flip Shot " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/fswords.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_187: 19 | .string "Fighters Swords " 20 | .string "Fighters Swords " 21 | .string "Fighters Swords " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/galaxyfg.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_78: 19 | .string "Galaxy Fight " 20 | .string "Galaxy Fight " 21 | .string "Galaxy Fight " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ganryu.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_252: 19 | .string "Musashi Ganryuki " 20 | .string "Ganryu " 21 | .string "Ganryu " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/garou.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_253: 19 | .string "Garou: MOTW " 20 | .string "Garou: MOTW " 21 | .string "Garou: MOTW " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ghostlop.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_228: 19 | .byte 0x64, 0xF9, 0xCC, 0xD3, 0xEA, 0xF6, 0x76, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Ghostlop " 21 | .string "Ghostlop " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/goalx3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_209: 19 | .byte 0xC9, 0xB7, 0xB9, 0xE8, 0x21, 0xC9, 0xB7, 0xB9, 0xE8, 0x21, 0xC9, 0xB7, 0xB9, 0xE8, 0x21, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Goal! Goal! Goal! " 21 | .string "Goal! Goal! Goal! " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/gowcaizr.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_94: 19 | .byte 0xC9, 0xF7, 0xC2, 0xC5, 0xC1, 0xCA, 0xF7, 0xF9, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Voltage Fighter Gow. " 21 | .string "Voltage Fighter Gow. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/gpilots.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_20: 19 | .string "Ghost Pilots " 20 | .string "Ghost Pilots " 21 | .string "Ghost Pilots " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/gururin.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_67: 19 | .string "Gururin " 20 | .string "Gururin " 21 | .string "Gururin " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/irrmaze.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_236: 19 | .byte 0x20, 0xD2, 0xF7, 0xED, 0xE7, 0xF4, 0xC2, 0x20, 0xC1, 0xE6, 0xC1, 0xE6, 0xDD, 0xF7, 0xC2, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "The Irritating Maze " 21 | .string "The Irritating Maze " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/janshin.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_48: 19 | .byte 0x8B, 0xB7, 0xB3, 0xAD, 0x8B, 0xAD, 0x20, 0x92, 0xB7, 0xAD, 0x8D, 0x91, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Quest of Jong Master " 21 | .string "Quest of Jong Master " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/jockeygp.s: -------------------------------------------------------------------------------- 1 | 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | -------------------------------------------------------------------------------- /games/joyjoy.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_21: 19 | .string "Joy Joy Kid " 20 | .string "Puzzled " 21 | .string "Puzzled " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kabukikl.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_92: 19 | .byte 0x92, 0xAD, 0x85, 0xB7, 0x81, 0x9E, 0x86, 0xB5, 0x82, 0x20, 0x8B, 0xAD, 0x92, 0xB7, 0xAD, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Kabuki Klash " 21 | .string "Kabuki Klash " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/karnovr.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_66: 19 | .byte 0xDB, 0xEE, 0xC1, 0xCF, 0xF9, 0xCC, 0xF7, 0x20, 0xDA, 0xCC, 0xD3, 0xE7, 0xF9, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Karnov's Revenge " 21 | .string "Fighter's History D. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kizuna.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_216: 19 | .byte 0x20, 0x20, 0x20, 0x20, 0x9B, 0x82, 0x82, 0xAD, 0x53, 0x54, 0x42, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Kizuna Encounter " 21 | .string "Kizuna Encounter " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof2000.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_257: 19 | .string "KOF 2000 " 20 | .string "KOF 2000 " 21 | .string "KOF 2000 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof2001.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_262: 19 | .string "KOF 2001 " 20 | .string "KOF 2001 " 21 | .string "KOF 2001 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof2002.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_265: 19 | .string "KOF 2002 " 20 | .string "KOF 2002 " 21 | .string "KOF 2002 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof2003.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_271: 19 | .string "KOF 2003 " 20 | .string "KOF 2003 " 21 | .string "KOF 2003 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof94.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_55: 19 | .string "King of Fighters 94 " 20 | .string "King of Fighters 94 " 21 | .string "King of Fighters 94 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof95.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_84: 19 | .string "KOF 95 " 20 | .string "KOF 95 " 21 | .string "KOF 95 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof96.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_214: 19 | .string "KOF 96 " 20 | .string "KOF 96 " 21 | .string "KOF 96 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof97.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_232: 19 | .string "KOF 97 " 20 | .string "KOF 97 " 21 | .string "KOF 97 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof98.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_242: 19 | .string "KOF 98 " 20 | .string "KOF 98 " 21 | .string "KOF 98 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kof99.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_251: 19 | .string "KOF 99 " 20 | .string "KOF 99 " 21 | .string "KOF 99 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kog.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | -------------------------------------------------------------------------------- /games/kotm.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_16: 19 | .string "King of the Monsters " 20 | .string "King of the Monsters " 21 | .string "King of the Monsters " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/kotm2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_39: 19 | .string "King of Monsters 2 " 20 | .string "KOTM 2 " 21 | .string "KOTM 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/lans2004.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | -------------------------------------------------------------------------------- /games/lastblad.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_234: 19 | .byte 0x88, 0xB7, 0xB6, 0x85, 0x98, 0x88, 0xAD, 0x8B, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Last Blade " 21 | .string "Last Blade " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/lastbld2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_243: 19 | .byte 0x88, 0xB7, 0xB6, 0x85, 0x98, 0x88, 0xAD, 0x8B, 0x20, 0x8F, 0xB7, 0x81, 0x32, 0x9E, 0x87, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Last Blade 2 " 21 | .string "Last Blade 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/lastsold.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | -------------------------------------------------------------------------------- /games/lbowling.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_19: 19 | .string "League Bowling " 20 | .string "League Bowling " 21 | .string "League Bowling " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/legendos.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_29: 19 | .string "Ashita noJoeDensetsu " 20 | .string "Lgnd. of Success Joe " 21 | .string "Lgnd. of Success Joe " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/lresort.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_24: 19 | .string "Last Resort " 20 | .string "Last Resort " 21 | .string "Last Resort " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/magdrop2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_221: 19 | .string "Magical Drop 2 " 20 | .string "Magical Drop 2 " 21 | .string "Magical Drop 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/magdrop3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_233: 19 | .string "Magical Drop 3 " 20 | .string "Magical Drop 3 " 21 | .string "Magical Drop 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/maglord.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_5: 19 | .string "Magician Lord " 20 | .string "Magician Lord " 21 | .string "Magician Lord " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mahretsu.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_4: 19 | .string "Mahjong Kyoretsuden " 20 | .string "Mahjong Kyoretsuden " 21 | .string "Mahjong Kyoretsuden " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/marukodq.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_206: 19 | .byte 0x9E, 0xA8, 0x89, 0x20, 0xD2, 0xB7, 0xE6, 0xF6, 0xC7, 0xCC, 0xC7, 0xC1, 0xCC, 0xB7, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Chibi Maruko. Quiz " 21 | .string "Chibi Maruko. Quiz " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/matrim.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_266: 19 | .string "Matrimelee " 20 | .string "Matrimelee " 21 | .string "Matrimelee " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/miexchng.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_231: 19 | .byte 0xC3, 0xC7, 0xCC, 0xD0, 0xF1, 0xED, 0xCB, 0xF7, 0xF3, 0xF9, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Money Puzzle Exchgr. " 21 | .string "Money Puzzle Exchgr. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/minasan.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_27: 19 | .byte 0xDF, 0xD4, 0xCA, 0xED, 0xD8, 0x20, 0xC4, 0xC5, 0xC8, 0xF7, 0xCA, 0xDE, 0xD2, 0xF7, 0xCC, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Mahjong Minnasano. " 21 | .string "Mahjong Minnasano. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mosyougi.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_203: 19 | .byte 0x20, 0x20, 0x8B, 0xB5, 0x82, 0x86, 0xB7, 0x98, 0x8F, 0x91, 0x8B, 0xB7, 0xAD, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Master of Syougi " 21 | .string "Master of Syougi " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslug.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_201: 19 | .byte 0xE1, 0xCF, 0xE8, 0x20, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug " 21 | .string "Metal Slug " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslug2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_241: 19 | .byte 0xE1, 0xCF, 0xE8, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x32, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug 2 " 21 | .string "Metal Slug 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslug3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_256: 19 | .byte 0xE1, 0xCF, 0xE8, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x33, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug 3 " 21 | .string "Metal Slug 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslug4.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_263: 19 | .byte 0xE1, 0xCF, 0xE8, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x34, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug 4 " 21 | .string "Metal Slug 4 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslug5.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_268: 19 | .byte 0xE1, 0xCF, 0xE8, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x35, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug 5 " 21 | .string "Metal Slug 5 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mslugx.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_250: 19 | .byte 0xE1, 0xCF, 0xE8, 0xCC, 0xE6, 0xF6, 0xC7, 0xF7, 0x20, 0x58, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Metal Slug X " 21 | .string "Metal Slug X " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/mutnat.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_14: 19 | .string "Mutation Nation " 20 | .string "Mutation Nation " 21 | .string "Mutation Nation " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/nam1975.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_1: 19 | .string "NAM-1975 " 20 | .string "NAM-1975 " 21 | .string "NAM-1975 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ncombat.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_9: 19 | .string "Ninja Combat " 20 | .string "Ninja Combat " 21 | .string "Ninja Combat " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ncommand.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_50: 19 | .string "Ninja Commando " 20 | .string "Ninja Commando " 21 | .string "Ninja Commando " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/neobombe.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_93: 19 | .string "Neo Bomberman " 20 | .string "Neo Bomberman " 21 | .string "Neo Bomberman " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/neocup98.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_244: 19 | .string "Neo Geo Cup '98 " 20 | .string "Neo Geo Cup '98 " 21 | .string "Neo Geo Cup '98 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/neodrift.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_213: 19 | .string "Neo Driftout " 20 | .string "Neo Driftout " 21 | .string "Neo Driftout " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/neomrdo.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_207: 19 | .string "Neo Mr. Do! " 20 | .string "Neo Mr. Do! " 21 | .string "Neo Mr. Do! " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ninjamas.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_217: 19 | .string "Ninja Master's " 20 | .string "Ninja Master's " 21 | .string "Ninja Master's " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/nitd.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_260: 19 | .string "Nightmare in the D. " 20 | .string "Nightmare in the D. " 21 | .string "Nightmare in the D. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/overtop.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_212: 19 | .string "Over Top " 20 | .string "Over Top " 21 | .string "Over Top " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/panicbom.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_73: 19 | .string "Panic Bomber " 20 | .string "Panic Bomber " 21 | .string "Panic Bomber " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/pbobbl2n.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_248: 19 | .string "Puzzle Bobble 2 " 20 | .string "Bust-A-Move Again " 21 | .string "Puzzle Bobble 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/pbobblen.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_83: 19 | .string "Puzzle Bobble " 20 | .string "Bust-A-Move " 21 | .string "Puzzle Bobble " 22 | .long logo_83 23 | .long 0 |no cheats 24 | 25 | logo_83: 26 | dc.l displogo_map 27 | dc.l 0x198D8 |palette 28 | dc.l 0x18854 |map 29 | -------------------------------------------------------------------------------- /games/pgoal.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_219: 19 | .string "Futsal 5-on-5 " 20 | .string "Pleasure Goal 5-on-5 " 21 | .string "Pleasure Goal 5-on-5 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/pnyaa.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_267: 19 | .string "Pochi & Nyaa " 20 | .string "Pochi & Nyaa " 21 | .string "Pochi & Nyaa " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/popbounc.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_237: 19 | .string "Gapporin " 20 | .string "Pop 'N Bounce " 21 | .string "Pop 'N Bounce " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/preisle2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_255: 19 | .string "Prehistoric Isle 2 " 20 | .string "Prehistoric Isle 2 " 21 | .string "Prehistoric Isle 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/pspikes2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_68: 19 | .string "Power Spikes 2 " 20 | .string "Power Spikes 2 " 21 | .string "Power Spikes 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/pulstar.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_89: 19 | .string "Pulstar " 20 | .string "Pulstar " 21 | .string "Pulstar " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/puzzldpr.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_235: 19 | .string "Puzzle de Pon! R " 20 | .string "Puzzle de Pon! R " 21 | .string "Puzzle de Pon! R " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/puzzledp.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_202: 19 | .string "Puzzle de Pon! " 20 | .string "Puzzle de Pon! " 21 | .string "Puzzle de Pon! " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/quizdai2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_42: 19 | .byte 0xC7, 0xC1, 0xCC, 0xF7, 0x20, 0xCF, 0xF7, 0xC1, 0xCE, 0xC2, 0xCA, 0xCD, 0xED, 0x32, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Quiz Meitantei " 21 | .string "Quiz Meitantei " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/quizdais.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_23: 19 | .string "Quiz Daisousa Sen " 20 | .string "Quiz Daisousa Sen " 21 | .string "Quiz Daisousa Sen " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/quizkof.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_80: 19 | .string "Quiz KOF " 20 | .string "Quiz KOF " 21 | .string "Quiz KOF " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ragnagrd.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_218: 19 | .byte 0x8B, 0xAD, 0x84, 0x82, 0x88, 0xAD, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Ragnagard " 21 | .string "Ragnagard " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/rbff1.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_95: 19 | .string "Real Bout Garou Den. " 20 | .string "Real Bout Fatal Fury " 21 | .string "Real Bout Fatal Fury " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/rbff2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_240: 19 | .string "RB. Garou Densetsu 2 " 20 | .string "RB. Fatal Fury 2 " 21 | .string "RB. Fatal Fury 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/rbffspec.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_223: 19 | .string "RB. Garou Den. Spec. " 20 | .string "RB. Fatal Fury Spec. " 21 | .string "RB. Fatal Fury Spec. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ridhero.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_6: 19 | .string "Riding Hero " 20 | .string "Riding Hero " 21 | .string "Riding Hero " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/roboarmy.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_32: 19 | .byte 0xEA, 0xDD, 0xF7, 0x20, 0xC0, 0xF9, 0xDF, 0xF9, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Robo Army " 21 | .string "Robo Army " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/rotd.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_264: 19 | .string "Rage of the Dragons " 20 | .string "Rage of the Dragons " 21 | .string "Rage of the Dragons " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/s1945p.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_254: 19 | .string "Strikers 1945 Plus " 20 | .string "Strikers 1945 Plus " 21 | .string "Strikers 1945 Plus " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsh5sp.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_272: 19 | .byte 0xCA, 0xE0, 0xE6, 0xC1, 0xCC, 0xDA, 0xB8, 0xE7, 0xF6, 0xD1, 0x20, 0xCD, 0xB7, 0xEA, 0x53, 0x50, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown 5 S. " 21 | .string "Samurai Shodown 5 S. " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsho.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_45: 19 | .byte 0xCA, 0xE0, 0xE6, 0xC1, 0x20, 0xCC, 0xDA, 0xF8, 0xE7, 0xF6, 0xD1, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown " 21 | .string "Samurai Shodown " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsho2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_63: 19 | .byte 0xCB, 0xED, 0x20, 0xCA, 0xE0, 0xE6, 0xC1, 0x20, 0xCC, 0xDA, 0xF8, 0xE7, 0xF6, 0xD1, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown 2 " 21 | .string "Samurai Shodown 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsho3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_87: 19 | .byte 0xCA, 0xE0, 0xE6, 0xC1, 0xCC, 0xDA, 0xF8, 0xE7, 0xF6, 0xD1, 0x8A, 0xB7, 0xAD, 0x87, 0xAA, 0x82, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown 3 " 21 | .string "Samurai Shodown 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsho4.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_222: 19 | .byte 0xCA, 0xE0, 0xE6, 0xC1, 0x20, 0x80, 0x9E, 0x87, 0x8A, 0x89, 0x82, 0xA7, 0xAD, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown 4 " 21 | .string "Samurai Shodown 4 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/samsho5.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_270: 19 | .byte 0xCA, 0xE0, 0xE6, 0xC1, 0xCC, 0x75, 0xE7, 0xF6, 0xD1, 0x20, 0x68, 0xEA, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Samurai Shodown 5 " 21 | .string "Samurai Shodown 5 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/savagere.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_59: 19 | .byte 0x9B, 0x82, 0x82, 0xAD, 0xA2, 0x87, 0x8B, 0xAA, 0x87, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Savage Reign " 21 | .string "Savage Reign " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/sdodgeb.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_208: 19 | /* Current text writing method can't handle the necessary characters */ 20 | /* .byte 0x97, 0xB6, 0x88, 0x91, 0x6E, 0xF6, 0x66, 0x73, 0xF9, 0xE8, 0x0D, 0xAD, 0x8D, 0x91, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 */ 21 | .string "Super Dodge Ball " 22 | .string "Super Dodge Ball " 23 | .string "Super Dodge Ball " 24 | .long 0x0 25 | .long 0x0 26 | -------------------------------------------------------------------------------- /games/sengoku.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_17: 19 | .string "Sengoku Denshou " 20 | .string "Sengoku " 21 | .string "Sengoku " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/sengoku2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_40: 19 | .string "Sengoku Denshou 2 " 20 | .string "Sengoku 2 " 21 | .string "Sengoku 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/sengoku3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_261: 19 | .byte 0x8D, 0xAD, 0x89, 0xB7, 0x87, 0x20, 0x32, 0x30, 0x30, 0x31, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Sengoku 3 " 21 | .string "Sengoku 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/shocktr2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_246: 19 | .string "Shock Troopers 2 " 20 | .string "Shock Troopers 2 " 21 | .string "Shock Troopers 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/shocktro.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_238: 19 | .string "Shock Troopers " 20 | .string "Shock Troopers " 21 | .string "Shock Troopers " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/socbrawl.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | gamename_31: 21 | .string "Soccer Brawl " 22 | .string "Soccer Brawl " 23 | .string "Soccer Brawl " 24 | .long 0x0 25 | .long 0x0 26 | -------------------------------------------------------------------------------- /games/sonicwi2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_75: 19 | .string "Sonic Wings 2 " 20 | .string "Aero Fighters 2 " 21 | .string "Sonic Wings 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/sonicwi3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_97: 19 | .string "Sonic Wings 3 " 20 | .string "Aero Fighters 3 " 21 | .string "Sonic Wings 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/spinmast.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_62: 19 | .byte 0xDF, 0xE6, 0xC7, 0xE8, 0x20, 0xC0, 0xD3, 0xF7, 0xDC, 0xF7, 0xED, 0xD0, 0xF3, 0xF9, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Spinmaster " 21 | .string "Spinmaster " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ssideki.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_52: 19 | .string "Super Sidekicks " 20 | .string "Super Sidekicks " 21 | .string "Super Sidekicks " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ssideki2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_61: 19 | .byte 0x93, 0x87, 0x92, 0xAD, 0x84, 0x82, 0x32, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Super Sidekicks 2 " 21 | .string "Super Sidekicks 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ssideki3.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_81: 19 | .string "Super Sidekicks 3 " 20 | .string "Super Sidekicks 3 " 21 | .string "Super Sidekicks 3 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/ssideki4.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_215: 19 | .byte 0x93, 0x87, 0x92, 0xAD, 0x84, 0x82, 0x20, 0x9D, 0x98, 0x84, 0x98, 0xE7, 0xDC, 0xF7, 0xEA, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "The Ultimate 11 " 21 | .string "The Ultimate 11 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/stakwin.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_88: 19 | .string "Stakes Winner " 20 | .string "Stakes Winner " 21 | .string "Stakes Winner " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/stakwin2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_227: 19 | .string "Stakes Winner 2 " 20 | .string "Stakes Winner 2 " 21 | .string "Stakes Winner 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/strhoop.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_79: 19 | .byte 0xCF, 0xF7, 0xED, 0xC7, 0x20, 0xD3, 0xF7, 0xE7, 0xF9, 0xE0, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Street Slam " 21 | .string "Street Hoop " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/superspy.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_11: 19 | .string "The Super Spy " 20 | .string "The Super Spy " 21 | .string "The Super Spy " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/svc.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_269: 19 | .string "SVC Chaos SNK vs Cap " 20 | .string "SVC Chaos SNK vs Cap " 21 | .string "SVC Chaos SNK vs Cap " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/svcplus.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /games/tophuntr.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_46: 19 | .string "Top Hunter " 20 | .string "Top Hunter " 21 | .string "Top Hunter " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/tpgolf.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_3: 19 | .string "Top Player's Golf " 20 | .string "Top Player's Golf " 21 | .string "Top Player's Golf " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/trally.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_38: 19 | .string "Thrash Rally " 20 | .string "Thrash Rally " 21 | .string "Thrash Rally " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/turfmast.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_200: 19 | .byte 0xDA, 0xB7, 0xF6, 0xC7, 0xB7, 0xD3, 0xF9, 0xD4, 0xE1, 0xED, 0xD3, 0x20, 0xC9, 0xB7, 0xE8, 0xDB, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Neo Turf Masters " 21 | .string "Neo Turf Masters " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/twinspri.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_224: 19 | .string "Twinkle Star Sprites " 20 | .string "Twinkle Star Sprites " 21 | .string "Twinkle Star Sprites " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/tws96.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_86: 19 | .string "Tecmo Wrd. Soccer 96 " 20 | .string "Tecmo Wrd. Soccer 96 " 21 | .string "Tecmo Wrd. Soccer 96 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/viewpoin.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_51: 19 | .string "Viewpoint " 20 | .string "Viewpoint " 21 | .string "Viewpoint " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/vliner.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /games/vlinero.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /games/wakuwak7.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_225: 19 | .byte 0xAB, 0x87, 0xAB, 0x87, 0x37, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Waku Waku 7 " 21 | .string "Waku Waku 7 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/wh1.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_53: 19 | .string "World Heroes " 20 | .string "World Heroes " 21 | .string "World Heroes " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/wh2.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_57: 19 | .string "World Heroes 2 " 20 | .string "World Heroes 2 " 21 | .string "World Heroes 2 " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/wh2j.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_64: 19 | .string "World Heroes 2 Jet " 20 | .string "World Heroes 2 Jet " 21 | .string "World Heroes 2 Jet " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/whp.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_90: 19 | .string "World Heroes Perfect " 20 | .string "World Heroes Perfect " 21 | .string "World Heroes Perfect " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/wjammers.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_65: 19 | .byte 0xDB, 0xE6, 0xC1, 0xED, 0xC7, 0xF7, 0x20, 0xD9, 0xF8, 0xEB, 0xF9, 0xD2, 0xF7, 0xEF, 0xCC, 0xC7, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Windjammers " 21 | .string "Windjammers " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/zedblade.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_76: 19 | .byte 0xC4, 0xDC, 0xF8, 0xE9, 0xF9, 0xCB, 0xF5, 0xED, 0x20, 0xE6, 0xC7, 0xF7, 0xD4, 0xEA, 0xC7, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00 20 | .string "Zed Blade " 21 | .string "Zed Blade " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /games/zintrckb.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /games/zupapa.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | gamename_70: 19 | .string "Zupapa! " 20 | .string "Zupapa! " 21 | .string "Zupapa! " 22 | .long 0x0 23 | .long 0x0 24 | -------------------------------------------------------------------------------- /howtoplay.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | .global how_to_play 19 | 20 | how_to_play: 21 | 22 | -------------------------------------------------------------------------------- /ingamemenu.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | .include "defines.inc" 19 | 20 | .global vblank_ingamemenu 21 | .global setup_ingamemenu 22 | 23 | setup_ingamemenu: 24 | /* save palette 0 */ 25 | lea PALETTES+32,a0 26 | lea PALETTE_SAVE,a1 27 | move.l #(16/2)-1,d7 28 | 1: 29 | move.l (a0)+,(a1)+ 30 | dbra d7,1b 31 | 32 | /* save fix */ 33 | lea FIX_SAVE,a0 34 | move.w #FIXMAP+(32*12)+6,d0 | Box position 35 | move.l #16-1,d6 36 | 2: 37 | move.l #16-1,d7 38 | 1: 39 | move.w d0,(REG_VRAMADDR) | REG_VRAMMOD doesn't work when reading 40 | nop 41 | move.w (REG_VRAMRW),(a0)+ 42 | addq.w #1,d0 43 | dbra d7,1b 44 | addi.w #32-16,d0 | Next column 45 | dbra d6,2b 46 | 47 | move.w #BLACK,(PALETTES+(32*1)+0) | Text palette 1 48 | move.w #TEXTCOLOR,(PALETTES+(32*1)+2) 49 | move.w #0x0222,(PALETTES+(32*1)+4) 50 | 51 | /* Draws box */ 52 | 53 | move.w #0x1000,d2 | Write fixed text 54 | lea IGM,a0 55 | jsr text16_out 56 | rts 57 | 58 | vblank_ingamemenu: 59 | 60 | /* User input */ 61 | move.b (REG_P1CNT),d0 62 | move.b (P1_PREV),d1 63 | eor.b #0xFF,d0 64 | move.b d0,(P1_PREV) 65 | eor.b d0,d1 66 | and.b d0,d1 67 | 68 | btst #7,d1 | D: quit ingame menu 69 | beq .noa 70 | /* restore palette 0 */ 71 | lea PALETTE_SAVE,a0 72 | lea PALETTES+32,a1 73 | move.l #(16/2)-1,d7 74 | 1: 75 | move.l (a0)+,(a1)+ 76 | dbra d7,1b 77 | 78 | /* restore fix */ 79 | lea FIX_SAVE,a0 80 | move.w #FIXMAP+(32*12)+6,d0 | Box position 81 | move.w #1,(REG_VRAMMOD) 82 | move.l #16-1,d6 83 | 2: 84 | move.l #16-1,d7 85 | move.w d0,(REG_VRAMADDR) 86 | 1: 87 | nop 88 | move.w (a0)+,(REG_VRAMRW) 89 | dbra d7,1b 90 | addi.l #32,d0 | Next column 91 | dbra d6,2b 92 | 93 | clr.b (MENU_MODE) 94 | move.b #0x80,(BIOS_SYSTEM_MODE) | Game mode 95 | rts 96 | .noa: 97 | 98 | rts 99 | 100 | .section .bss 101 | 102 | FIX_SAVE: .fill 16*16,2,0 103 | PALETTE_SAVE: .fill 16,2,0 104 | 105 | .section .rodata 106 | .align 4 107 | IGM: 108 | dc.w FIXMAP+(32*12)+6 109 | .string " NEOPEN BIOS \xFF IN-GAME MENU \xFF \xFF SET SOFTDIPS \xFF SET DEBUG DIPS \xFF CHEATS \xFF TEST " 110 | 111 | -------------------------------------------------------------------------------- /io.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: io.s,v 1.16 2011/11/09 14:38:00 elbarto Exp $ */ 19 | 20 | .global joy_read 21 | .global check_start 22 | .global check_mahjong_controller 23 | 24 | .include "defines.inc" 25 | 26 | /*! DEF joy_read 27 | \brief Read the P1 and P2 controller and put value in BIOS RAM 28 | */ 29 | 30 | joy_read: 31 | bsr read_start 32 | movea.l #INPUT_1, a0 33 | movea.l #REG_P1CNT, a1 34 | bsr read_port 35 | movea.l #INPUT_2, a0 36 | movea.l #REG_P2CNT, a1 37 | bsr read_port 38 | rts 39 | 40 | read_start: 41 | move.b (REG_STATUS_B), d0 | (Reads only P1 & P2 starts) 42 | move.b (PREV_SS),d1 43 | not.b d0 44 | and.b #0xF, d0 45 | move.b d0,(INPUT_S) 46 | move.b d0,(PREV_SS) 47 | eor.b d0,d1 48 | and.b d0,d1 49 | move.b d1,(INPUT_S+1) 50 | bsr check_pause 51 | rts 52 | 53 | read_port: 54 | move.b #1, (a0) | Status Set to normal controller (TOFIX) 55 | move.b (a1),d0 | save actual HW read 56 | move.b 2(a0),d1 | get previous 57 | not.b d0 | invert HW read 58 | move.b d0,1(a0) | set actual 59 | move.b d0,2(a0) | set previous=actual 60 | eor.b d0,d1 | keep difference 61 | and.b d0,d1 | keep only rising edge 62 | move.b d1,3(a0) | set rising edge 63 | rts 64 | 65 | check_pause: 66 | move.b (INPUT_S+1), d0 67 | btst #2, d0 68 | beq 2f 69 | btst #7, (BIOS_SYSTEM_MODE) 70 | beq 1f 71 | move.b #0x0, (BIOS_SYSTEM_MODE) 72 | jmp 2f 73 | 1: 74 | move.b #0x80, (BIOS_SYSTEM_MODE) 75 | 2: 76 | rts 77 | 78 | /*! DEF check_start 79 | \brief Check if start buttons have been pressed, if yes call the START routine of the game 80 | */ 81 | check_start: 82 | btst.b #0, (INPUT_S+1) 83 | beq 1f 84 | tst.b (SRAM_COIN1) | Test if player 1 have enought credits 85 | beq 1f 86 | bset.b #0, (BIOS_START_FLAG) | Player 1 pushed start 87 | move.b (SRAM_COIN1), d0 88 | moveq #1, d1 89 | sbcd d1, d0 90 | move.b d0, (SRAM_COIN1) 91 | 1: 92 | btst.b #2, (INPUT_S+1) 93 | beq 1f 94 | tst.b (SRAM_COIN2) | Test if player 1 have enought credits 95 | beq 1f 96 | bset.b #1, (BIOS_START_FLAG) | Player 2 pushed start 97 | move.b (SRAM_COIN2), d0 98 | moveq #1, d1 99 | sbcd d1, d0 100 | move.b d0, (SRAM_COIN2) 101 | 1: 102 | tst (BIOS_START_FLAG) 103 | beq 1f 104 | move.b #2, (BIOS_USER_REQUEST) | Game mode 105 | jmp (PLAYER_START) 106 | 1: 107 | rts 108 | 109 | check_mahjong_controller: 110 | rts 111 | .section .bss 112 | PREV_SS: .byte 0 113 | -------------------------------------------------------------------------------- /logomap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neogeodev/neopenbios/2b28ff0f4adf296757467f179d70d0e64a847f29/logomap.inc -------------------------------------------------------------------------------- /sram.s: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011 Emmanuel Vadot 3 | * Copyright (c) 2011 Furrtek 4 | * 5 | * Permission to use, copy, modify, and distribute this software for any 6 | * purpose with or without fee is hereby granted, provided that the above 7 | * copyright notice and this permission notice appear in all copies. 8 | * 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | */ 17 | 18 | /* $Id: sram.s,v 1.3 2011/11/15 18:24:52 furrtek Exp $ */ 19 | 20 | .include "defines.inc" 21 | 22 | .global test_sram 23 | 24 | test_sram: 25 | movea.l #0xD00010, a0 26 | lea str_backupramok, a1 27 | move.l #0xF, d0 28 | 1: 29 | cmp.b (a0)+, (a1)+ 30 | bne init_sram | If string isn't here, backupram must be init 31 | dbra d0, 1b 32 | movea.l #0xD00000, a0 33 | lea str_neopenbiosok, a1 34 | move.l #0xF, d0 35 | 1: 36 | cmp.b (a0)+, (a1)+ 37 | bne init_sram | Not a neopenbios compliant backupram 38 | dbra d0, 1b 39 | rts 40 | 41 | init_sram: 42 | move.b #0, (REG_SRAMUNLOCK) 43 | movea.l #0xD00000, a0 44 | lea str_neopenbiosok, a1 45 | move.l #0x1E, d0 46 | 1: 47 | move.b (a1)+, (a0)+ 48 | dbra d0, 1b 49 | move.w #0x7FFF, (SRAM_FIRSTCOLOR) 50 | move.w #0x7888, (SRAM_SECONDCOLOR) 51 | move.w #0x4F00, (SRAM_THIRDCOLOR) 52 | move.b #0, (SRAM_LOGOCOLOR) 53 | lea SRAM_CUSTOMMESSAGE, a0 54 | lea str_defaultmessage, a1 55 | move.l #0x10-1, d0 56 | 1: 57 | move.b (a1)+, (a0)+ 58 | dbra d0, 1b 59 | move.b #0, (REG_SRAMLOCK) 60 | rts 61 | 62 | .section .rodata 63 | .align 4 64 | str_neopenbiosok: 65 | .string "NEOPENBIOS v0.1" 66 | str_backupramok: 67 | .string "BACKUP RAM OK!\x80" 68 | str_defaultmessage: 69 | .string "I love NeoGeo " 70 | --------------------------------------------------------------------------------