From bc8f9c706722e1546608a4d125be570f53600550 Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Sat, 21 Aug 2021 15:14:33 +0300 Subject: AC08 support removed --- CoolGirl_config.vh | 1 - CoolGirl_mappers.vh | 17 ----------------- 2 files changed, 18 deletions(-) diff --git a/CoolGirl_config.vh b/CoolGirl_config.vh index 136da3b..a443f9a 100644 --- a/CoolGirl_config.vh +++ b/CoolGirl_config.vh @@ -41,7 +41,6 @@ parameter ENABLE_MAPPER_184 = 0, // mapper #184 parameter ENABLE_MAPPER_189 = 1, // mapper #189 - TXC parameter ENABLE_MAPPER_206 = 0, // mapper #206 - the simpler predecessor of the MMC3 parameter ENABLE_MAPPER_228 = 0, // mapper #228 - Action52: Cheetahmen II only -parameter ENABLE_MAPPER_AC08 = 0, // mapper AC-08: Green Beret FDS conversion parameter ENABLE_FOUR_SCREEN = 1, // Enable four-screen support, required by some games parameter UxROM_BITSIZE = 4, // Maximum size for UxROM PRG (3=256KB - standard size, 4=512KB - required for some hacks/homebrew) diff --git a/CoolGirl_mappers.vh b/CoolGirl_mappers.vh index 2fdb1a4..afbfccd 100644 --- a/CoolGirl_mappers.vh +++ b/CoolGirl_mappers.vh @@ -521,10 +521,8 @@ begin if (ENABLE_MAPPER_009_010 && mapper == 6'b010001) prg_bank_b <= 8'b11111101; if (ENABLE_MAPPER_042 && (mapper == 6'b010111)) map_rom_on_6000 <= 1; if (ENABLE_MAPPER_065 && mapper == 6'b001110) prg_bank_b <= 1; - if (ENABLE_MAPPER_AC08 && (mapper == 6'b100001)) map_rom_on_6000 <= 1; end endcase - end if ((RESET_COMBINATION != 0) && (cpu_addr_in == 15'h4016)) @@ -674,15 +672,6 @@ begin chr_bank_a[4:3] <= cpu_data_in[3:2]; end end - - // Mapper AC-08 - if (ENABLE_MAPPER_AC08 && (mapper == 6'b100001)) - begin - if (cpu_addr_in[14:0] == 15'h4025) - begin - mirroring <= {1'b0, cpu_data_in[3]}; - end - end end else begin // $8000-$FFFF // Mapper #2 - UxROM // flag0 - mapper #71 - for Fire Hawk only. @@ -1266,12 +1255,6 @@ begin chr_bank_a[6:3] <= cpu_data_in[3:0]; end - // Mapper AC-08 - if (ENABLE_MAPPER_AC08 && (mapper == 6'b100001)) - begin - prg_bank_6000[3:0] <= cpu_data_in[4:1]; - end - // Mapper #75 - VRC1 if (ENABLE_MAPPER_075 && (mapper == 6'b100010)) begin -- cgit v1.2.3