mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-05 21:07:21 +00:00
11 lines
414 B
C
11 lines
414 B
C
#pragma once
|
|
|
|
const int _6502_BRANCH_POS = +127;
|
|
const int _6502_BRANCH_NEG = -128;
|
|
const unsigned int _6502_ZEROPAGE_END = 0x00FF;
|
|
const unsigned int _6502_STACK_END = 0x01FF;
|
|
const unsigned int _6502_IO_BEGIN = 0xC000;
|
|
const unsigned int _6502_IO_END = 0xC0FF;
|
|
const unsigned int _6502_MEM_BEGIN = 0x0000;
|
|
const unsigned int _6502_MEM_END = 0xFFFF;
|