1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-02 02:16:18 +00:00

Adds capture and forwarding of border colour.

This commit is contained in:
Thomas Harte
2021-04-25 14:00:12 -04:00
parent 2bbf8bc9fa
commit fd271d920b
4 changed files with 32 additions and 16 deletions

View File

@@ -64,8 +64,7 @@ std::unique_ptr<Analyser::Static::Target> SNA::load(const std::string &file_name
state->z80.registers.interrupt_mode = file.get8();
// 1A border colour
const uint8_t border_colour = file.get8();
(void)border_colour; // TODO.
state->video.border_colour = file.get8();
// 1B 48kb RAM contents
state->ram = file.read(48*1024);