User Tools

Site Tools


hardware:flashcarts

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hardware:flashcarts [2023/08/18 22:11] clydehardware:flashcarts [2024/11/22 09:40] (current) clyde
Line 1: Line 1:
 ====== Flash Cartridges ====== ====== Flash Cartridges ======
  
-{{ :hardware:flashcart.jpg?400|}}+{{ :hardware:flashcart.jpg?200}}
  
 This page covers information about the 2MB Flash Cartridge for the GameTank. This page covers information about the 2MB Flash Cartridge for the GameTank.
Line 108: Line 108:
  RTS  RTS
 </code> </code>
 +
 +===== Reading from banked memory =====
 +
 +Any data that you want to access with the movable window should be referenced by its address relative to the start of its bank plus the cartridge port offset. So if you have data to access at $0, $4000, and $C000 bytes into your game binary you'd read from $8000 after setting the bank number to 0, 1, and 3 respectively.
 +
 +The last 16KB of your game binary are always accessible at $C000-$FFFF, and also accessible at $8000-$BFFF if the bank number has been set to 127 or 255.
 +
 +Some toolchains like cc65 have features that can assign addresses in seemingly overlapping ranges depending on the linker configuration.
 +
 +===== Creating ROM files =====
 +
 +Both the GameTankEmulator and GameTankFlashingOverhauled will assume a file with a size of exactly 2^21 bytes is a ROM file for the 2MB flash cartridge. In this file all of the banks are concatenated together in the order of their bank number, including empty banks.
 +
 +GameTankFlashingOverhauled will also treat any 16384-byte file with an extension like .bankXX (where XX is a hexadecimal number) as a single bank from the flashcart so that less time can be spent flashing empty banks.
hardware/flashcarts.1692396716.txt.gz · Last modified: 2023/08/18 22:11 by clyde