├── .gitignore ├── CHANGELOG.md ├── README.md ├── common ├── comm.inc └── error_codes.inc ├── docs ├── README.md ├── boot_options.md ├── error_codes.md ├── ram.md ├── ram_locations │ ├── images │ │ ├── mv1_ram.jpg │ │ ├── mv1a_ram.jpg │ │ ├── mv1b_ram.jpg │ │ ├── mv1c_bottom_ram.jpg │ │ ├── mv1c_top_ram.jpg │ │ ├── mv1f_ram.jpg │ │ ├── mv1ft_ram.jpg │ │ ├── mv1fz_ram.jpg │ │ ├── mv2_ram.jpg │ │ ├── mv2f_ram.jpg │ │ ├── mv4_ram.jpg │ │ ├── mv4f_ram.jpg │ │ ├── mv4ft_ram.jpg │ │ ├── mv6_ram.jpg │ │ └── neo-aes3-5_ram.jpg │ ├── mv1.md │ ├── mv1a.md │ ├── mv1b.md │ ├── mv1c.md │ ├── mv1f.md │ ├── mv1ft.md │ ├── mv1fz.md │ ├── mv2.md │ ├── mv2f.md │ ├── mv4.md │ ├── mv4f.md │ ├── mv4ft.md │ ├── mv6.md │ └── neo-aes3.md ├── repairs.md ├── repairs │ ├── images │ │ ├── mv4_067063_s1.jpg │ │ ├── mv4f_115676_s1-1.jpg │ │ ├── mv4f_115676_s1-2.jpg │ │ ├── mv4f_115676_s2.jpg │ │ ├── mv4f_263635_s3.jpg │ │ ├── mv4f_263635_s4.jpg │ │ ├── mv4f_270480_s1.jpg │ │ ├── mv4f_270480_s2-1.jpg │ │ ├── mv4f_270480_s2-2.jpg │ │ ├── mv4ft2_336163_s2-1.jpg │ │ ├── mv4ft2_336163_s2-2.jpg │ │ ├── mv4ft2_336163_s2-3.jpg │ │ ├── mv4ft2_336163_s2-4.jpg │ │ ├── mv4ft_292340_s1-1.jpg │ │ └── mv4ft_292340_s1-2.jpg │ ├── mv4_040731.md │ ├── mv4_067063.md │ ├── mv4_202839.md │ ├── mv4f_115676.md │ ├── mv4f_263635.md │ ├── mv4f_270480.md │ ├── mv4fs_512561.md │ ├── mv4ft2_336163.md │ ├── mv4ft_292340.md │ └── mv4ft_351485.md ├── slot_pins_inserts.md ├── slot_pins_inserts │ ├── aes_slot_pins_insert.pdf │ ├── aes_slot_pins_insert.studio3 │ ├── example_mvs_prog_a.jpg │ ├── example_mvs_prog_b.jpg │ ├── mvs_slot_pins_insert.pdf │ └── mvs_slot_pins_insert.studio3 ├── tests.md └── tests │ ├── 68k │ ├── backup_ram_oe.md │ ├── backup_ram_we.md │ ├── bios_crc.md │ ├── bios_upper_address.md │ ├── cpu_pal_addr.md │ ├── images │ │ ├── cpu_pal_addr_bad.gif │ │ ├── cpu_pal_addr_good.gif │ │ ├── video_dac_main.png │ │ └── video_dac_main_mv4_example.png │ ├── memcard.md │ ├── memcard_address.md │ ├── memcard_data.md │ ├── memcard_detect.md │ ├── memcard_output.md │ ├── memcard_writable.md │ ├── p_rom_address_bus.md │ ├── p_rom_bus.md │ ├── p_rom_data_bus.md │ ├── p_rom_output.md │ ├── p_rom_writable.md │ ├── video_dac.md │ ├── watchdog_stuck.md │ ├── work_ram_oe.md │ └── work_ram_we.md │ ├── comm_test.md │ ├── sm1_tests.md │ └── z80 │ ├── m1_bank.md │ ├── m1_crc.md │ ├── m1_upper_address.md │ ├── ram_address.md │ ├── ram_data.md │ ├── ram_oe.md │ ├── ram_we.md │ ├── sm1_crc.md │ ├── sm1_oe.md │ ├── ym2610_io.md │ ├── ym2610_noise_maker.md │ ├── ym2610_stuck_irq.md │ ├── ym2610_timer_flag.md │ └── ym2610_timer_irq.md ├── m1 ├── Makefile ├── gen-crc-mirror-bank.c ├── m1.asm ├── m1.inc ├── macros.inc └── neogeo.inc └── sp1 ├── Makefile ├── backup_ram.asm ├── bios_crc32.asm ├── bios_mirror.asm ├── calendar.asm ├── color_bars_basic.asm ├── color_bars_smpte.asm ├── controller.asm ├── cpu_pal_addr.asm ├── dsub.asm ├── error_address.asm ├── fix_util.asm ├── footer.asm ├── gen-crc-mirror.c ├── include ├── macros.inc ├── neogeo.inc └── sp1.inc ├── memory_card.asm ├── memory_common.asm ├── misc_input.asm ├── mmio.asm ├── p_rom_bus.asm ├── palette_ram.asm ├── print_error.asm ├── sp1.asm ├── sp1.ld ├── util.asm ├── vector_table.asm ├── video_dac.asm ├── video_ram_2k.asm ├── video_ram_32k.asm ├── watchdog.asm ├── work_ram.asm └── z80.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/README.md -------------------------------------------------------------------------------- /common/comm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/common/comm.inc -------------------------------------------------------------------------------- /common/error_codes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/common/error_codes.inc -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/boot_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/boot_options.md -------------------------------------------------------------------------------- /docs/error_codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/error_codes.md -------------------------------------------------------------------------------- /docs/ram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram.md -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1a_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1a_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1b_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1b_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1c_bottom_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1c_bottom_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1c_top_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1c_top_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1f_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1f_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1ft_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1ft_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv1fz_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv1fz_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv2_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv2_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv2f_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv2f_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv4_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv4_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv4f_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv4f_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv4ft_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv4ft_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/mv6_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/mv6_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/images/neo-aes3-5_ram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/images/neo-aes3-5_ram.jpg -------------------------------------------------------------------------------- /docs/ram_locations/mv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1a.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1b.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1c.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1f.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1ft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1ft.md -------------------------------------------------------------------------------- /docs/ram_locations/mv1fz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv1fz.md -------------------------------------------------------------------------------- /docs/ram_locations/mv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv2.md -------------------------------------------------------------------------------- /docs/ram_locations/mv2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv2f.md -------------------------------------------------------------------------------- /docs/ram_locations/mv4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv4.md -------------------------------------------------------------------------------- /docs/ram_locations/mv4f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv4f.md -------------------------------------------------------------------------------- /docs/ram_locations/mv4ft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv4ft.md -------------------------------------------------------------------------------- /docs/ram_locations/mv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/mv6.md -------------------------------------------------------------------------------- /docs/ram_locations/neo-aes3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/ram_locations/neo-aes3.md -------------------------------------------------------------------------------- /docs/repairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs.md -------------------------------------------------------------------------------- /docs/repairs/images/mv4_067063_s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4_067063_s1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_115676_s1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_115676_s1-1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_115676_s1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_115676_s1-2.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_115676_s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_115676_s2.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_263635_s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_263635_s3.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_263635_s4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_263635_s4.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_270480_s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_270480_s1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_270480_s2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_270480_s2-1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4f_270480_s2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4f_270480_s2-2.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft2_336163_s2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft2_336163_s2-1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft2_336163_s2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft2_336163_s2-2.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft2_336163_s2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft2_336163_s2-3.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft2_336163_s2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft2_336163_s2-4.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft_292340_s1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft_292340_s1-1.jpg -------------------------------------------------------------------------------- /docs/repairs/images/mv4ft_292340_s1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/images/mv4ft_292340_s1-2.jpg -------------------------------------------------------------------------------- /docs/repairs/mv4_040731.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4_040731.md -------------------------------------------------------------------------------- /docs/repairs/mv4_067063.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4_067063.md -------------------------------------------------------------------------------- /docs/repairs/mv4_202839.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4_202839.md -------------------------------------------------------------------------------- /docs/repairs/mv4f_115676.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4f_115676.md -------------------------------------------------------------------------------- /docs/repairs/mv4f_263635.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4f_263635.md -------------------------------------------------------------------------------- /docs/repairs/mv4f_270480.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4f_270480.md -------------------------------------------------------------------------------- /docs/repairs/mv4fs_512561.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4fs_512561.md -------------------------------------------------------------------------------- /docs/repairs/mv4ft2_336163.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4ft2_336163.md -------------------------------------------------------------------------------- /docs/repairs/mv4ft_292340.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4ft_292340.md -------------------------------------------------------------------------------- /docs/repairs/mv4ft_351485.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/repairs/mv4ft_351485.md -------------------------------------------------------------------------------- /docs/slot_pins_inserts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts.md -------------------------------------------------------------------------------- /docs/slot_pins_inserts/aes_slot_pins_insert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/aes_slot_pins_insert.pdf -------------------------------------------------------------------------------- /docs/slot_pins_inserts/aes_slot_pins_insert.studio3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/aes_slot_pins_insert.studio3 -------------------------------------------------------------------------------- /docs/slot_pins_inserts/example_mvs_prog_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/example_mvs_prog_a.jpg -------------------------------------------------------------------------------- /docs/slot_pins_inserts/example_mvs_prog_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/example_mvs_prog_b.jpg -------------------------------------------------------------------------------- /docs/slot_pins_inserts/mvs_slot_pins_insert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/mvs_slot_pins_insert.pdf -------------------------------------------------------------------------------- /docs/slot_pins_inserts/mvs_slot_pins_insert.studio3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/slot_pins_inserts/mvs_slot_pins_insert.studio3 -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/tests/68k/backup_ram_oe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/backup_ram_oe.md -------------------------------------------------------------------------------- /docs/tests/68k/backup_ram_we.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/backup_ram_we.md -------------------------------------------------------------------------------- /docs/tests/68k/bios_crc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/bios_crc.md -------------------------------------------------------------------------------- /docs/tests/68k/bios_upper_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/bios_upper_address.md -------------------------------------------------------------------------------- /docs/tests/68k/cpu_pal_addr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/cpu_pal_addr.md -------------------------------------------------------------------------------- /docs/tests/68k/images/cpu_pal_addr_bad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/images/cpu_pal_addr_bad.gif -------------------------------------------------------------------------------- /docs/tests/68k/images/cpu_pal_addr_good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/images/cpu_pal_addr_good.gif -------------------------------------------------------------------------------- /docs/tests/68k/images/video_dac_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/images/video_dac_main.png -------------------------------------------------------------------------------- /docs/tests/68k/images/video_dac_main_mv4_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/images/video_dac_main_mv4_example.png -------------------------------------------------------------------------------- /docs/tests/68k/memcard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard.md -------------------------------------------------------------------------------- /docs/tests/68k/memcard_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard_address.md -------------------------------------------------------------------------------- /docs/tests/68k/memcard_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard_data.md -------------------------------------------------------------------------------- /docs/tests/68k/memcard_detect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard_detect.md -------------------------------------------------------------------------------- /docs/tests/68k/memcard_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard_output.md -------------------------------------------------------------------------------- /docs/tests/68k/memcard_writable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/memcard_writable.md -------------------------------------------------------------------------------- /docs/tests/68k/p_rom_address_bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/p_rom_address_bus.md -------------------------------------------------------------------------------- /docs/tests/68k/p_rom_bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/p_rom_bus.md -------------------------------------------------------------------------------- /docs/tests/68k/p_rom_data_bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/p_rom_data_bus.md -------------------------------------------------------------------------------- /docs/tests/68k/p_rom_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/p_rom_output.md -------------------------------------------------------------------------------- /docs/tests/68k/p_rom_writable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/p_rom_writable.md -------------------------------------------------------------------------------- /docs/tests/68k/video_dac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/video_dac.md -------------------------------------------------------------------------------- /docs/tests/68k/watchdog_stuck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/watchdog_stuck.md -------------------------------------------------------------------------------- /docs/tests/68k/work_ram_oe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/work_ram_oe.md -------------------------------------------------------------------------------- /docs/tests/68k/work_ram_we.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/68k/work_ram_we.md -------------------------------------------------------------------------------- /docs/tests/comm_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/comm_test.md -------------------------------------------------------------------------------- /docs/tests/sm1_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/sm1_tests.md -------------------------------------------------------------------------------- /docs/tests/z80/m1_bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/m1_bank.md -------------------------------------------------------------------------------- /docs/tests/z80/m1_crc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/m1_crc.md -------------------------------------------------------------------------------- /docs/tests/z80/m1_upper_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/m1_upper_address.md -------------------------------------------------------------------------------- /docs/tests/z80/ram_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ram_address.md -------------------------------------------------------------------------------- /docs/tests/z80/ram_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ram_data.md -------------------------------------------------------------------------------- /docs/tests/z80/ram_oe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ram_oe.md -------------------------------------------------------------------------------- /docs/tests/z80/ram_we.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ram_we.md -------------------------------------------------------------------------------- /docs/tests/z80/sm1_crc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/sm1_crc.md -------------------------------------------------------------------------------- /docs/tests/z80/sm1_oe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/sm1_oe.md -------------------------------------------------------------------------------- /docs/tests/z80/ym2610_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ym2610_io.md -------------------------------------------------------------------------------- /docs/tests/z80/ym2610_noise_maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ym2610_noise_maker.md -------------------------------------------------------------------------------- /docs/tests/z80/ym2610_stuck_irq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ym2610_stuck_irq.md -------------------------------------------------------------------------------- /docs/tests/z80/ym2610_timer_flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ym2610_timer_flag.md -------------------------------------------------------------------------------- /docs/tests/z80/ym2610_timer_irq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/docs/tests/z80/ym2610_timer_irq.md -------------------------------------------------------------------------------- /m1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/Makefile -------------------------------------------------------------------------------- /m1/gen-crc-mirror-bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/gen-crc-mirror-bank.c -------------------------------------------------------------------------------- /m1/m1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/m1.asm -------------------------------------------------------------------------------- /m1/m1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/m1.inc -------------------------------------------------------------------------------- /m1/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/macros.inc -------------------------------------------------------------------------------- /m1/neogeo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/m1/neogeo.inc -------------------------------------------------------------------------------- /sp1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/Makefile -------------------------------------------------------------------------------- /sp1/backup_ram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/backup_ram.asm -------------------------------------------------------------------------------- /sp1/bios_crc32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/bios_crc32.asm -------------------------------------------------------------------------------- /sp1/bios_mirror.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/bios_mirror.asm -------------------------------------------------------------------------------- /sp1/calendar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/calendar.asm -------------------------------------------------------------------------------- /sp1/color_bars_basic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/color_bars_basic.asm -------------------------------------------------------------------------------- /sp1/color_bars_smpte.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/color_bars_smpte.asm -------------------------------------------------------------------------------- /sp1/controller.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/controller.asm -------------------------------------------------------------------------------- /sp1/cpu_pal_addr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/cpu_pal_addr.asm -------------------------------------------------------------------------------- /sp1/dsub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/dsub.asm -------------------------------------------------------------------------------- /sp1/error_address.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/error_address.asm -------------------------------------------------------------------------------- /sp1/fix_util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/fix_util.asm -------------------------------------------------------------------------------- /sp1/footer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/footer.asm -------------------------------------------------------------------------------- /sp1/gen-crc-mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/gen-crc-mirror.c -------------------------------------------------------------------------------- /sp1/include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/include/macros.inc -------------------------------------------------------------------------------- /sp1/include/neogeo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/include/neogeo.inc -------------------------------------------------------------------------------- /sp1/include/sp1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/include/sp1.inc -------------------------------------------------------------------------------- /sp1/memory_card.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/memory_card.asm -------------------------------------------------------------------------------- /sp1/memory_common.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/memory_common.asm -------------------------------------------------------------------------------- /sp1/misc_input.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/misc_input.asm -------------------------------------------------------------------------------- /sp1/mmio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/mmio.asm -------------------------------------------------------------------------------- /sp1/p_rom_bus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/p_rom_bus.asm -------------------------------------------------------------------------------- /sp1/palette_ram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/palette_ram.asm -------------------------------------------------------------------------------- /sp1/print_error.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/print_error.asm -------------------------------------------------------------------------------- /sp1/sp1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/sp1.asm -------------------------------------------------------------------------------- /sp1/sp1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/sp1.ld -------------------------------------------------------------------------------- /sp1/util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/util.asm -------------------------------------------------------------------------------- /sp1/vector_table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/vector_table.asm -------------------------------------------------------------------------------- /sp1/video_dac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/video_dac.asm -------------------------------------------------------------------------------- /sp1/video_ram_2k.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/video_ram_2k.asm -------------------------------------------------------------------------------- /sp1/video_ram_32k.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/video_ram_32k.asm -------------------------------------------------------------------------------- /sp1/watchdog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/watchdog.asm -------------------------------------------------------------------------------- /sp1/work_ram.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/work_ram.asm -------------------------------------------------------------------------------- /sp1/z80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwestfall69/neogeo-diag-bios/HEAD/sp1/z80.asm --------------------------------------------------------------------------------