Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/coolgirl-multicart/coolgirl-famicom-multicart.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-22 22:30:50 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-22 22:30:50 +0300
commitd408fb05281baa5874380f716217fb0f66bf27cd (patch)
tree8e84b5db613c428aa7bb29de5828590322585788
parentbdba976f7777400f6d571ad8a99b131107c5cf6f (diff)
AC08 mapper is not enabled by default anymore
-rw-r--r--CoolGirl_config.vh2
-rw-r--r--CoolGirl_mappers.vh2
2 files changed, 2 insertions, 2 deletions
diff --git a/CoolGirl_config.vh b/CoolGirl_config.vh
index a7a471d..3c130c8 100644
--- a/CoolGirl_config.vh
+++ b/CoolGirl_config.vh
@@ -39,7 +39,7 @@ 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 = 1, // mapper AC-08: Green Beret FDS conversion
+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 24c6882..5e1721c 100644
--- a/CoolGirl_mappers.vh
+++ b/CoolGirl_mappers.vh
@@ -210,7 +210,7 @@ wire [18:10] chr_addr_mapped = (
)
) : ( // chr_mode[1]
// 100 - 0x1000(A) + 0x1000(E)
- // 101 - 0x1000(A/B) + 0x1000(E/F) - MMC2 и MMC4
+ // 101 - 0x1000(A/B) + 0x1000(E/F) - MMC2 and MMC4
{ppu_addr_in[12] ?
(((ENABLE_MAPPER_009_010) && chr_mode[0] && ppu_latch1) ? chr_bank_f[8:2] : chr_bank_e[8:2]) :
(((ENABLE_MAPPER_009_010) && chr_mode[0] && ppu_latch0) ? chr_bank_b[8:2] : chr_bank_a[8:2]),