Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
716 | lvd | 1 | #pragma once |
2 | |||
3 | struct TRegLayout |
||
4 | { |
||
5 | size_t offs; |
||
6 | unsigned char width; |
||
7 | unsigned char x,y; |
||
8 | unsigned char lf,rt,up,dn; |
||
9 | }; |
||
10 | |||
11 | extern const TRegLayout regs_layout[]; |
||
12 | extern const size_t regs_layout_count; |
||
13 | |||
14 | void ra(); |
||
15 | void rf(); |
||
16 | void rbc(); |
||
17 | void rde(); |
||
18 | void rhl(); |
||
19 | void rsp(); |
||
20 | void rpc(); |
||
21 | void rix(); |
||
22 | void riy(); |
||
23 | void ri(); |
||
24 | void rr(); |
||
25 | void rm(); |
||
26 | void r_1(); |
||
27 | void r_2(); |
||
28 | void rSF(); |
||
29 | void rZF(); |
||
30 | void rF5(); |
||
31 | void rHF(); |
||
32 | void rF3(); |
||
33 | void rPF(); |
||
34 | void rNF(); |
||
35 | void rCF(); |
||
36 | |||
37 | void rcodejump(); |
||
38 | void rdatajump(); |
||
39 | |||
40 | void rleft(); |
||
41 | void rright(); |
||
42 | void rup(); |
||
43 | void rdown(); |
||
44 | void renter(); |
||
45 | |||
46 | void showregs(); |
||
47 | char dispatch_regs(); |