Skip to content

Commit

Permalink
Add submissions from 3615Retro
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Oct 23, 2024
1 parent 93add7c commit 0b552f4
Show file tree
Hide file tree
Showing 62 changed files with 644 additions and 4 deletions.
12 changes: 12 additions & 0 deletions backend/src/config/cartridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ pub enum BoardConfig {
AgbE05,
AgbE06,
AgbE11,
AgbE12,
AgbE18,
AgbE24,
AgbY11,
Expand Down Expand Up @@ -230,6 +231,16 @@ impl BoardConfig {
D::U2 => part(PartRole::Ram, fram_sop_28()),
_ => None,
},
BoardConfig::AgbE12 => match designator {
// QFP-32
D::U1 => part(PartRole::Unknown, unknown_chip()),
// TSOP-II-44 ROM
D::U2 => part(PartRole::Rom, agb_mask_rom_tsop_ii_44()),
// SOP-8 EEPROM
D::U3 => part(PartRole::Eeprom, eeprom()),
D::U4 => part(PartRole::Accelerometer, accelerometer()),
_ => None,
},
BoardConfig::AgbE18 => match designator {
// TSOP-II-44 ROM
D::U1 => part(PartRole::Rom, agb_mask_rom_tsop_ii_44()),
Expand Down Expand Up @@ -659,6 +670,7 @@ fn create_map() -> HashMap<&'static str, BoardConfig> {
m.insert("AGB-E05", BoardConfig::AgbE05);
m.insert("AGB-E06", BoardConfig::AgbE06);
m.insert("AGB-E11", BoardConfig::AgbE11);
m.insert("AGB-E12", BoardConfig::AgbE12);
m.insert("AGB-E18", BoardConfig::AgbE18);
m.insert("AGB-E24", BoardConfig::AgbE24);
m.insert("AGB-Y11", BoardConfig::AgbY11);
Expand Down
23 changes: 21 additions & 2 deletions backend/src/parser/accelerometer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: MIT

use super::{week2, year2, ChipYearWeek, LabelParser, Manufacturer};
use crate::macros::single_parser;
use crate::macros::{multi_parser, single_parser};

pub type Accelerometer = ChipYearWeek;

Expand All @@ -26,6 +26,25 @@ pub fn analog_adxl202jqc() -> &'static impl LabelParser<ChipYearWeek> {
)
}

/// ```
/// use gbhwdb_backend::parser::{self, LabelParser};
/// assert!(parser::accelerometer::accelerometer().parse("06245 202JE 0501A").is_ok());
/// ```
pub fn analog_adxl202je() -> &'static impl LabelParser<ChipYearWeek> {
single_parser!(
ChipYearWeek,
r#"^[0-9]{5}\ 202JE\ [0-9]{4}[A-Z]$"#,
move |_| {
Ok(ChipYearWeek {
kind: "ADXL202JE".to_owned(),
manufacturer: Some(Manufacturer::Analog),
year: None,
week: None,
})
}
)
}

pub fn accelerometer() -> &'static impl LabelParser<Accelerometer> {
analog_adxl202jqc()
multi_parser!(Accelerometer, analog_adxl202jqc(), analog_adxl202je(),)
}
3 changes: 2 additions & 1 deletion backend/src/parser/mask_rom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,11 +455,12 @@ pub fn fujitsu() -> &'static impl LabelParser<MaskRom> {
/// assert!(parser::mask_rom::oki_mr26v().parse("AGB-TCHK-1 H2 R26V3210F-087 244A239").is_ok());
/// assert!(parser::mask_rom::oki_mr26v().parse("AGB-AXVJ-0 I2 R26V6414G-0A7 243A262").is_ok());
/// assert!(parser::mask_rom::oki_mr26v().parse("AGB-BR4J-0 I2 R26V6415G-02L 427ABA3").is_ok());
/// assert!(parser::mask_rom::oki_mr26v().parse("AGB-BR3P-0 H2 R26V3211F-0T6 442ABAJJ").is_ok());
/// ```
pub fn oki_mr26v() -> &'static impl LabelParser<MaskRom> {
single_parser!(
MaskRom,
r#"^(AGB-[[:alnum:]]{4}-[0-9])\ [A-Z][0-9]\ (R26V[0-9]{4}[A-Z])-[0-9][[:alnum:]][[:alnum:]]\ ([0-9])([0-9]{2})[A-Z][[:alnum:]]{3}$"#,
r#"^(AGB-[[:alnum:]]{4}-[0-9])\ [A-Z][0-9]\ (R26V[0-9]{4}[A-Z])-[0-9][[:alnum:]][[:alnum:]]\ ([0-9])([0-9]{2})[A-Z][[:alnum:]]{3}[A-Z]?$"#,
move |c| {
Ok(MaskRom {
rom_id: c[1].to_owned(),
Expand Down
2 changes: 1 addition & 1 deletion backend/src/parser/supervisor_reset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ pub fn rohm_ba6735() -> &'static impl LabelParser<SupervisorReset> {
pub fn ti_sn74lv2416() -> &'static impl LabelParser<SupervisorReset> {
single_parser!(
SupervisorReset,
r#"^LV2416\ ([0-9])([0-9])[[:alnum:]]\ [A-Z][0-9][[:alnum:]]{2}$"#,
r#"^LV2416\ ([0-9])([0-9])[[:alnum:]]\ [A-Z][[:alnum:]]{3}$"#,
move |c| {
Ok(SupervisorReset {
chip_type: "SN74LV2416".to_owned(),
Expand Down
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AGAP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AGAP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AGAP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions data/cartridges/AGB-AGAP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"code": "AGB-AGAP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-AGAP-EUR",
"stamp": "00"
},
"board": {
"label": "AGB-E03-10",
"circled_letters": "MB",
"panel_position": "P-6",
"year": 2001,
"month": 9,
"u1": {
"label": "S013821-M MX23L3206-12B AGB-AGAP-0 H2 2E510202"
},
"u2": {
"label": "9853 1968"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Gradius Advance (Europe).gba\n* File Size: 4.00 MiB (4194304 bytes)\n* CRC32: 3722bdfa\n* MD5: 1227eebff87a8b9d5e713e20cddcb468\n* SHA-1: 1f28db5ac70ae11b2f3414369d1be73accb36f3b\n* SHA-256: 1c97e01bd0a38a2c659dec73e5f263df4c8b49545065e1273e7eaec33650dbc1\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:32:50+02:00\n* Time Elapsed: 28 seconds (142.67 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 4 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: GRADIUSADVAN\n* Game Code: AGAP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0x4A)\n* Save Type: 4K or 64K EEPROM (EEPROM_V122)\n\n== Database Match ==\n* Game Name: Gradius Advance (Europe)\n* Region: Europe\n* Language(s): En\n* Game Code: AGB-AGAP\n* ROM CRC32: 3722bdfa\n* ROM Size: 4 MiB\n* Save Type: 4K EEPROM (512 Bytes)",
"crc32": "3722bdfa",
"md5": "1227eebff87a8b9d5e713e20cddcb468",
"sha1": "1f28db5ac70ae11b2f3414369d1be73accb36f3b",
"sha256": "1c97e01bd0a38a2c659dec73e5f263df4c8b49545065e1273e7eaec33650dbc1",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-APXP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-APXP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-APXP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions data/cartridges/AGB-APXP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"code": "AGB-APXP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-APXP-EUR",
"stamp": "09"
},
"board": {
"label": "AGB-E03-10",
"circled_letters": "K",
"panel_position": "T-4",
"year": 2001,
"month": 10,
"u1": {
"label": "S014521-M MX23L3206-12B AGB-APXP-0 H2 2F209701"
},
"u2": {
"label": "9853 1A64"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Phalanx (Europe) (En,Fr,De,Es,It,Nl).gba\n* File Size: 4.00 MiB (4194304 bytes)\n* CRC32: dfcfe06c\n* MD5: bc15f4e82a86854175442d32218e2b14\n* SHA-1: 83067b4574a49ae8d89b79d91e7ce4aad8141e67\n* SHA-256: 3e36612f1eaca467e20a350728eee31f66d2fa01bd3e71d4da143a633a2764c2\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:30:15+02:00\n* Time Elapsed: 28 seconds (142.60 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 4 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: PHALANX␀␀␀␀␀\n* Game Code: APXP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0x8F)\n* Save Type: 4K or 64K EEPROM (EEPROM_V122)\n\n== Database Match ==\n* Game Name: Phalanx (Europe) (En,Fr,De,Es,It,Nl)\n* Region: Europe\n* Language(s): En,Fr,De,Es,It,Nl\n* Game Code: AGB-APXP\n* ROM CRC32: dfcfe06c\n* ROM Size: 4 MiB\n* Save Type: 4K EEPROM (512 Bytes)",
"crc32": "dfcfe06c",
"md5": "bc15f4e82a86854175442d32218e2b14",
"sha1": "83067b4574a49ae8d89b79d91e7ce4aad8141e67",
"sha256": "3e36612f1eaca467e20a350728eee31f66d2fa01bd3e71d4da143a633a2764c2",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AREP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AREP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AREP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions data/cartridges/AGB-AREP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"code": "AGB-AREP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-AREP-EUR",
"stamp": "07"
},
"board": {
"label": "AGB-E06-10",
"circled_letters": "MB",
"panel_position": "N-4",
"year": 2001,
"month": 9,
"u1": {
"label": "E014207-M MX23L6406-12B AGB-AREP-0 I2 2E075400"
},
"u2": {
"label": "hynix 0139A HY62WT081ED70C KOREA"
},
"u3": {
"label": "LV2416 18M ACHD"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Megaman - Battle Network (Europe).gba\n* File Size: 8.00 MiB (8388608 bytes)\n* CRC32: 1a7fb4fa\n* MD5: 62e32a9ccf6c31850041555cb8151440\n* SHA-1: b017b6054ffafc012be9adee785819b17706cabc\n* SHA-256: b8ddb8e0b334c944c5fef82db8733911780764f7c12fb3e24cb1b32a018f7eb1\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:56:11+02:00\n* Time Elapsed: 56 seconds (143.83 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 8 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: MEGAMANEXEBN\n* Game Code: AREP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0x59)\n* Save Type: 256K SRAM (SRAM_V112)\n\n== Database Match ==\n* Game Name: Megaman - Battle Network (Europe)\n* Region: Europe\n* Language(s): En\n* Game Code: AGB-AREP\n* ROM CRC32: 1a7fb4fa\n* ROM Size: 8 MiB\n* Save Type: 256K SRAM/FRAM (32 KiB)",
"crc32": "1a7fb4fa",
"md5": "62e32a9ccf6c31850041555cb8151440",
"sha1": "b017b6054ffafc012be9adee785819b17706cabc",
"sha256": "b8ddb8e0b334c944c5fef82db8733911780764f7c12fb3e24cb1b32a018f7eb1",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-ASOP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-ASOP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-ASOP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions data/cartridges/AGB-ASOP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"code": "AGB-ASOP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-ASOP-UKV",
"stamp": "12"
},
"board": {
"label": "AGB-E02-10",
"circled_letters": "YG",
"panel_position": "C-4",
"year": 2002,
"month": 9,
"u1": {
"label": "S024107-M MX23L6406-12B1 AGB-ASOP-0 I2 2G450600"
},
"u2": {
"label": "39VF512 70-4C-WH 0216052-D"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Sonic Advance (Europe) (En,Ja,Fr,De,Es).gba\n* File Size: 8.00 MiB (8388608 bytes)\n* CRC32: 6232839b\n* MD5: 93a2f28339858e955e4f17060e038bcd\n* SHA-1: eb00f101af23d728075ac2117e27ecd8a4b4c3e9\n* SHA-256: a57c8c1a3e19a65baadc4a2fb4aa669e5ef462153ae9536634adbe6e03154b08\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:28:15+02:00\n* Time Elapsed: 57 seconds (143.40 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 8 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: SONIC ADVANC\n* Game Code: ASOP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0x48)\n* Save Type: 512K FLASH (FLASH_V126)\n* Save Flash Chip: SST 39VF512 (0xBFD4)\n\n== Database Match ==\n* Game Name: Sonic Advance (Europe) (En,Ja,Fr,De,Es)\n* Region: Europe\n* Language(s): En,Ja,Fr,De,Es\n* Game Code: AGB-ASOP\n* ROM CRC32: 6232839b\n* ROM Size: 8 MiB\n* Save Type: 512K FLASH (64 KiB)",
"crc32": "6232839b",
"md5": "93a2f28339858e955e4f17060e038bcd",
"sha1": "eb00f101af23d728075ac2117e27ecd8a4b4c3e9",
"sha256": "a57c8c1a3e19a65baadc4a2fb4aa669e5ef462153ae9536634adbe6e03154b08",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AZEP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AZEP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-AZEP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions data/cartridges/AGB-AZEP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"code": "AGB-AZEP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-AZEP-EUR",
"stamp": "13"
},
"board": {
"label": "AGB-E02-10",
"circled_letters": "I",
"panel_position": "K-6",
"year": 2002,
"month": 4,
"u1": {
"label": "E021707-M MX23L6406-12B AGB-AZEP-0 I2 2F824500"
},
"u2": {
"label": "39VF512 70-4C-WH 0143078-D"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Zone of the Enders - The Fist of Mars (Europe) (En,Fr,De).gba\n* File Size: 8.00 MiB (8388608 bytes)\n* CRC32: 973496e0\n* MD5: 55b8193f7a2e96d6af029e2411fe22cb\n* SHA-1: 2441dcc18125514596c36b7ebc090f3fb3644fdb\n* SHA-256: 4516368570d8319b533b9e61caf047cf886443ebe139659519ee69d6f58696d1\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:26:16+02:00\n* Time Elapsed: 57 seconds (143.50 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 8 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: Z.O.E EU␀␀␀␀\n* Game Code: AZEP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0xA8)\n* Save Type: 512K FLASH (FLASH_V126)\n* Save Flash Chip: SST 39VF512 (0xBFD4)\n\n== Database Match ==\n* Game Name: Zone of the Enders - The Fist of Mars (Europe) (En,Fr,De)\n* Region: Europe\n* Language(s): En,Fr,De\n* Game Code: AGB-AZEP\n* ROM CRC32: 973496e0\n* ROM Size: 8 MiB\n* Save Type: 512K FLASH (64 KiB)",
"crc32": "973496e0",
"md5": "55b8193f7a2e96d6af029e2411fe22cb",
"sha1": "2441dcc18125514596c36b7ebc090f3fb3644fdb",
"sha256": "4516368570d8319b533b9e61caf047cf886443ebe139659519ee69d6f58696d1",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BDVP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BDVP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BDVP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions data/cartridges/AGB-BDVP-0/3615retro-1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"code": "AGB-BDVP-0",
"slug": "3615retro-1",
"contributor": "3615Retro",
"index": 1,
"shell": {
"code": "AGB-BDVP-EUR",
"stamp": "34 E3"
},
"board": {
"label": "AGB-E03-20",
"circled_letters": "CS",
"panel_position": "A-2",
"year": 2005,
"month": 3,
"u1": {
"label": "M051838-MG MX23L12806-12C AGB-BDVP-0 J2 2L641100"
},
"u2": {
"label": "9853 5350"
}
},
"dump": {
"tool": "GBxCart RW v1.4a/b/c",
"log": "= FlashGBX Dump Report =\n\n== File Information ==\n* File Name: Dragon Ball - Advanced Adventure (Europe) (En,Fr,De,Es,It).gba\n* File Size: 16.00 MiB (16777216 bytes)\n* CRC32: 6c135820\n* MD5: cb14df09ea41694532a9327510bb28c1\n* SHA-1: e49ae836b14f84dc8cd817bf912fcdce82d8a587\n* SHA-256: 015ab2129d6f4315b92b32fa29d8cead7195a51951945d87fbcc6f07149811c5\n\n== General Information ==\n* Hardware: GBxCart RW v1.4a/b/c – Firmware R42+L13\n* Software: FlashGBX v4.2\n* OS Platform: Windows-10-10.0.19045-SP0\n* Baud Rate: 1700000\n* Dump Time: 2024-10-22T23:21:41+02:00\n* Time Elapsed: 1 minute, 53 seconds (144.21 KiB/s)\n* Transfer Buffer: 4096 bytes\n* Retries: 0\n\n== Dumping Settings ==\n* Mode: Game Boy Advance\n* ROM Size: 16 MiB\n* Cartridge Type: Generic ROM Cartridge\n* Read Method: Stream\n\n== Parsed Data ==\n* Game Title: DRAGONBALLAA\n* Game Code: BDVP\n* Revision: 0\n* Nintendo Logo: OK\n* Header Checksum: OK (0x59)\n* Save Type: 4K or 64K EEPROM (EEPROM_V124)\n\n== Database Match ==\n* Game Name: Dragon Ball - Advanced Adventure (Europe) (En,Fr,De,Es,It)\n* Region: Europe\n* Language(s): En,Fr,De,Es,It\n* Game Code: AGB-BDVP\n* ROM CRC32: 6c135820\n* ROM Size: 16 MiB\n* Save Type: 4K EEPROM (512 Bytes)",
"crc32": "6c135820",
"md5": "cb14df09ea41694532a9327510bb28c1",
"sha1": "e49ae836b14f84dc8cd817bf912fcdce82d8a587",
"sha256": "015ab2129d6f4315b92b32fa29d8cead7195a51951945d87fbcc6f07149811c5",
"date": "2024-10-22"
}
}
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BFZP-0/3615retro-1/01_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BFZP-0/3615retro-1/02_pcb_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions data/cartridges/AGB-BFZP-0/3615retro-1/03_pcb_back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0b552f4

Please sign in to comment.