mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-01-22 14:17:03 +00:00
* Mem dump cmds without any args will now display the prefix address * Support data sub-window (that reflects m1 dump) * Breakpoint display: Right align R and W at end of line * Help doc: Update Memory page to include prefix address examples * Help doc: Update Breakpoint & Memory pages: add images showing address prefixes as shown in the UI --------- Co-authored-by: michaelangel007 <michaelangel007@sharedcraft.com>
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
#pragma once
|
|
|
|
// Apple II defines & memory locations
|
|
enum
|
|
{
|
|
// Note: All are in bytes!
|
|
TEXT_PAGE1_BEGIN = 0x0400,
|
|
TEXT_PAGE1_SIZE = 0x0400,
|
|
HGR_PAGE1_BEGIN = 0x2000,
|
|
HGR_PAGE1_SIZE = 0x2000,
|
|
|
|
APPLE_SLOT_SIZE = 0x0100, // 1 page = $Cx00 .. $CxFF (slot 1 .. 7)
|
|
APPLE_IO_BEGIN = 0xC000,
|
|
APPLE_IO_END = 0xC0FF,
|
|
APPLE_SLOT_BEGIN = 0xC100, // each slot has 1 page reserved for it
|
|
APPLE_SLOT_END = 0xC7FF,
|
|
|
|
FIRMWARE_EXPANSION_SIZE = 0x0800, // 8 pages = $C800 .. $CFFF
|
|
FIRMWARE_EXPANSION_BEGIN = 0xC800, // [C800,CFFF)
|
|
FIRMWARE_EXPANSION_END = 0xCFFF,
|
|
|
|
APPLE_TOTAL_IO_SIZE = (FIRMWARE_EXPANSION_END+1) - APPLE_IO_BEGIN,
|
|
|
|
APPLE_ROM_BEGIN = 0xD000
|
|
};
|
|
|
|
// 6502 defines & memory locations
|
|
enum
|
|
{
|
|
_6502_BRANCH_POS = +127,
|
|
_6502_BRANCH_NEG = -128,
|
|
_6502_PAGE_SIZE = 0x0100,
|
|
|
|
_6502_ZEROPAGE_END = 0x00FF,
|
|
_6502_STACK_BEGIN = 0x0100,
|
|
_6502_STACK_END = 0x01FF,
|
|
_6502_NMI_VECTOR = 0xFFFA,
|
|
_6502_RESET_VECTOR = 0xFFFC,
|
|
_6502_INTERRUPT_VECTOR = 0xFFFE, // IRQ & BRK
|
|
_6502_MEM_BEGIN = 0x0000,
|
|
_6502_MEM_END = 0xFFFF,
|
|
_6502_MEM_LEN = _6502_MEM_END + 1,
|
|
_6502_NUM_PAGES = _6502_MEM_LEN / _6502_PAGE_SIZE,
|
|
|
|
_6502_ZERO_PAGE = _6502_MEM_BEGIN >> 8,
|
|
_6502_STACK_PAGE = _6502_STACK_BEGIN >> 8
|
|
};
|