summaryrefslogtreecommitdiff
path: root/src/apple.h
blob: 57c8fe68f7fa7979a97cf2d2847b0de10ffc7871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "cpu/core.h"
#include <stdio.h>
#include <stdlib.h>

#define KBD		0xD010
#define KBD_CR	0xD011
#define DSP		0xD012
#define DSP_CR	0xD013

#define BS      0xDF
#define CR      0x8D
#define ESC     0x9B

void AppleOn(int memory);
void AppleReset();
byte UserInput();