1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-26 00:30:29 +00:00

line_number is now unused.

This commit is contained in:
Thomas Harte 2025-01-09 16:14:16 -05:00
parent 0677987320
commit c679e2c067

View File

@ -115,7 +115,7 @@ std::optional<BASICAnalysis> analyse(const File &file) {
}
const auto next_line_address = word(line_address);
const auto line_number = word(line_address + 2);
// const auto line_number = word(line_address + 2);
uint16_t code = line_address + 4;
const auto next = [&]() -> uint8_t {