-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathi80.c
124 lines (103 loc) · 2.37 KB
/
i80.c
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (c) 2021 Brian Callahan <bcallah@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "bfc.h"
void
i80_prologue(int fd)
{
dputs("\torg\t100h\n", fd);
dputs("\tlxi\tsp, 0dbffh\n", fd);
dputs("\tlxi\td, 5bffh\n", fd);
dputs("\tlxi\th, 8000h\n", fd);
dputs("loop:\tmov\ta, d\n", fd);
dputs("\tcpi\t0\n", fd);
dputs("\tjz\tendl\n", fd);
dputs("\tmvi\tm, 0\n", fd);
dputs("\tinx\th\n", fd);
dputs("\tdcr\td\n", fd);
dputs("\tjmp\tloop\n", fd);
dputs("endl:\tlxi\th, 8000h\n", fd);
dputs("main:\n", fd);
}
void
i80_epilogue(int fd)
{
dputs("\trst\t0\n", fd);
dputs("newl:\n", fd);
dputs("\tpush\th\n", fd);
dputs("\tmvi\te, 13\n", fd);
dputs("\tmvi\tc, 2\n", fd);
dputs("\tcall\t5\n", fd);
dputs("\tpop\th\n", fd);
dputs("\tret\n", fd);
dputs("\tend\n", fd);
}
void
i80_left(int fd)
{
dputs("\tdcx\th\n", fd);
}
void
i80_right(int fd)
{
dputs("\tinx\th\n", fd);
}
void
i80_inc(int fd)
{
dputs("\tmov\tb, m\n", fd);
dputs("\tinr\tb\n", fd);
dputs("\tmov\tm, b\n", fd);
}
void
i80_dec(int fd)
{
dputs("\tmov\tb, m\n", fd);
dputs("\tdcr\tb\n", fd);
dputs("\tmov\tm, b\n", fd);
}
void
i80_getchar(int fd)
{
dputs("\tpush\th\n", fd);
dputs("\tmvi\tc, 1\n", fd);
dputs("\tcall\t5\n", fd);
dputs("\tpop\th\n", fd);
dputs("\tmov\tm, a\n", fd);
}
void
i80_putchar(int fd)
{
dputs("\tpush\th\n", fd);
dputs("\tmov\ta, m\n", fd);
dputs("\tcpi\t10\n", fd);
dputs("\tcz\tnewl\n", fd);
dputs("\tmov\te, m\n", fd);
dputs("\tmvi\tc, 2\n", fd);
dputs("\tcall\t5\n", fd);
dputs("\tpop\th\n", fd);
}
void
i80_open_loop(int fd)
{
dputs("\tmov\ta, m\n", fd);
dputs("\tcpi\t0\n", fd);
dputs("\tjz\t.LE", fd);
}
void
i80_close_loop(int fd)
{
dputs("\tjmp\t.LB",fd);
}