9 lines
230 B
C
9 lines
230 B
C
#pragma once
|
|
|
|
#include "asm.h"
|
|
|
|
/* I/O addresses. */
|
|
#define SPH 0x3E /* Stack pointer high address. */
|
|
#define SPL 0x3D /* Stack pointer low address. */
|
|
#define RAMEND 0x4000 /* The maximum address available in RAM. */
|