Skip to content

Commit

Permalink
Added gladmortd
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed May 11, 2024
1 parent 0959865 commit 3a51642
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/release/docs/hbnew.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ New Games
- [ckongpt2s02] Crazy Kong Part II 2023 revision
- [dkong22] Donkey Kong (hitboxes)
- [dkong23] Donkey Kong (hitboxes and sprites)
- [gladmortd] Gladmort (Demo)
- [oldsps28] Oriental Legend 2 (New Revision CN)


Expand Down
22 changes: 21 additions & 1 deletion src/hbmame/drivers/neogeohb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ NUM GAME YEAR COMPANY TITLE
500 0993 2022 iq_132 Kid no Hore Hore Daisakusen (Neo-Geo port)
501 0282 2023 iq_132 Soldier Girl Amazon (Neo-Geo port)
502 14A0 2023 Neo Byte Force Cyborg Force (https://ozzyouzo.itch.io/cyborg-force)
503 0722 2024 Pixelheart Gladmort Demo
Expand Down Expand Up @@ -332,7 +333,7 @@ YEAR COMPANY TITLE
2023 NeoHomeBrew Flippers Demo (on youtube)
2023 NeoHomeBrew Pinball Game Playfield Demo (on youtube)
2023 NeoHomeBrew Bouncing Ball Demo (on youtube)
2023 Chips on Steroids Gladmort (youtube)
2023 Pixelheart Gladmort [full] (youtube) - demo is released
2023 Neofid Studios Daemon Claw: Origins of Nnar (https://twitter.com/DAsteborg/status/1696175973253734420)
2024 Neofid Studios Demons of Asteborg DX (https://neofidstudios.itch.io/demons-of-asteborg-dx)
2024 Rosenthal Castle Petal Crash (video on youtube) (https://rosenthalcastle.itch.io/petal-crash-neo)
Expand Down Expand Up @@ -1956,6 +1957,24 @@ ROM_START( cyborg1 ) // Retroarch/fbneo patched
ROM_END


// 503 : Gladmort Demo by Pixelheart
ROM_START( gladmortd )
ROM_REGION( 0x100000, "maincpu", 0 )
ROM_LOAD16_WORD_SWAP( "503.p1", 0x000000, 0x080000, CRC(e0ceafec) SHA1(f147fdb7c0fee02e8ae1923bf0ef3aff954588ae) )

NEO_SFIX_128K( "503.s1", CRC(8304be52) SHA1(fbeaee12553709e54e7f5134dfd2ff96df5fdee0) )

NEO_BIOS_AUDIO_64K( "503.m1", CRC(fb945087) SHA1(a2bae6907bf02c93068f9ee23409506277c8a027) )

ROM_REGION( 0x1000000, "ymsnd:adpcma", 0 )
ROM_LOAD( "503.v1", 0x000000, 0x1000000, CRC(49d60c52) SHA1(56134745ce1fef3272aa5ddfcd24e3e894d5cca9) )

ROM_REGION( 0x2000000, "sprites", 0 )
ROM_LOAD16_BYTE( "503.c1", 0x0000000, 0x1000000, CRC(2c4fe4c3) SHA1(7121a8713d58bf61a88fcf075cdc9529838af6e1) )
ROM_LOAD16_BYTE( "503.c2", 0x0000001, 0x1000000, CRC(1bdd21bd) SHA1(13749d078525a63ac85ea2aa17b326409a4609e9) )
ROM_END


// 600 : 240p Test Suite by Artemio Urbina
ROM_START( 240ptest ) // 0.95
ROM_REGION( 0x100000, "maincpu", 0 )
Expand Down Expand Up @@ -3348,6 +3367,7 @@ GAME( 2006, ffeast, neogeo, neogeo_noslot, neogeo, neogeo_state, init
GAME( 2005, ffeastd, ffeast, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT0, "Rastersoft", "Frog Feast demo", MACHINE_SUPPORTS_SAVE )
GAME( 2023, galaxiann, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT270, "tcdev", "Galaxians (beta 1, 2023-05-31)", MACHINE_SUPPORTS_SAVE )
GAME( 2009, gbi, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT0, "[Raregame]", "GhostBusters (Intro demo)", MACHINE_SUPPORTS_SAVE )
GAME( 2009, gladmortd, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT0, "Pixelheart", "Gladmort (Demo)", MACHINE_SUPPORTS_SAVE )
GAME( 2020, gxg, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT0, "Vasily Familiya", "Casanova She And She demo", MACHINE_IS_INCOMPLETE | MACHINE_SUPPORTS_SAVE )
GAME( 2022, horekidb3, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT270, "iq132", "Kid no Hore Hore Daisakusen (Neo-Geo port)", MACHINE_SUPPORTS_SAVE )
GAME( 2021, hypernoid, neogeo, neogeo_noslot, neogeo, neogeo_state, init_neogeo, ROT0, "M.Priewe", "Hypernoid, 2021-11-28)", MACHINE_SUPPORTS_SAVE )
Expand Down
3 changes: 2 additions & 1 deletion src/hbmame/hbmame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -6105,7 +6105,8 @@ fr2 // 098 Idol Mahjong - final romance 2
fr2cd /* 098 (c) 1995 Video Systems Co. */
fr2ch /* 098 (c) 1995 Video Systems Co. */
galaxiann
gbi /* Ghostbusters Intro */
gbi
gladmortd
gxg
horekidb3
hypernoid
Expand Down

0 comments on commit 3a51642

Please sign in to comment.