1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
extern crate bit_field;
extern crate byteorder;
#[macro_use]
extern crate log;
extern crate zinc64;
mod charset;
mod debugger;
mod disassembler;
mod rap_server;
use std::sync::mpsc::Sender;
pub use self::debugger::Debugger;
pub use self::rap_server::RapServer;
pub enum Command {
Attach(Sender<CommandResult>),
Detach,
BpClear,
BpCondition(u16, String, u32),
BpDisable(u16),
BpDisableAll,
BpEnable(u16),
BpEnableAll,
BpIgnore(u16, u16),
BpList,
BpRemove(u16),
BpSet(u16, bool),
Continue,
RegRead,
RegWrite(Vec<RegOp>),
Step,
MemRead(u16, u16),
MemWrite(u16, Vec<u8>),
SysQuit,
SysReset(bool),
SysScreen,
SysStopwatch(bool),
}
pub enum CommandResult {
Await,
Buffer(Vec<u8>),
Error(String),
Number(u16),
Registers(RegData),
Text(String),
Unit,
}
pub struct RegData {
pub a: u8,
pub x: u8,
pub y: u8,
pub p: u8,
pub sp: u8,
pub pc: u16,
pub port_00: u8,
pub port_01: u8,
}
pub enum RegOp {
SetA(u8),
SetX(u8),
SetY(u8),
SetP(u8),
SetSP(u8),
SetPC(u16),
}