-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcradle_b.js
197 lines (167 loc) · 3.27 KB
/
cradle_b.js
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
'use strict';
const q = require('q');
const TAB = '\t';
let look;
exports.look = function() {
return look;
};
function getChar() {
const stdin = process.stdin;
const deferred = q.defer();
stdin.setRawMode(true);
stdin.resume();
stdin.once('data', function(c) {
if ( c.toString() === '\u0003' ) {
process.exit();
}
stdin.pause();
stdin.setRawMode(false);
look = c.toString();
stdin.removeAllListeners('error');
return deferred.resolve();
});
stdin.once('error', function(err) {
return deferred.reject(err);
});
return deferred.promise;
}
exports.getChar = getChar;
function error(err) {
console.log('\nError: ' + err + '.');
console.log(new Error().stack);
}
exports.error = error;
function abort(err) {
error(err);
process.exit(1);
}
exports.abort = abort;
function expected(s) {
abort(s + ' Expected');
}
exports.expected = expected;
function match(x) {
if (look !== x) expected(`''` + x + `''`);
else {
return getChar()
.then(() => {
return skipWhite();
});
}
}
exports.match = match;
function isAlpha(c) {
return !!c.match(/[a-zA-Z]/);
}
exports.isAlpha = isAlpha;
function isDigit(c) {
return !!c.match(/\d/);
}
exports.isDigit = isDigit;
function isAlNum(c) {
return isAlpha(c) || isDigit(c);
}
exports.isAlNum = isAlNum;
function isWhite(c) {
return c === ' ' || c === TAB;
}
exports.isWhite = isWhite;
function skipWhite() {
return q()
.then(() => {
if (isWhite(look)) {
return getChar()
.then(() => {
return skipWhite();
});
}
});
}
function getNameInner(token) {
let nextChar = look;
if (isAlNum(nextChar)) {
token = token + nextChar.toUpperCase();
return getChar()
.then(() => {
return getNameInner(token);
});
} else {
return token;
}
}
function getName() {
if (!isAlpha(look)) expected('Name');
return q()
.then(() => {
return getNameInner('')
.then((name) => {
return skipWhite().thenResolve(name);
});
});
}
exports.getName = getName;
function getNumInner(value) {
let nextChar = look;
if (isDigit(nextChar)) {
value = value + nextChar;
return getChar()
.then(() => {
return getNumInner(value);
});
} else {
return value;
}
}
function getNum() {
if (!isDigit(look)) expected('Integer');
return q()
.then(() => {
return getNumInner('')
.then((number) => {
return skipWhite().thenResolve(number);
});
});
}
exports.getNum = getNum;
function emit(s) {
process.stdout.write(TAB + s);
}
exports.emit = emit;
function asmHeader() {
// This next line came from the EASy68K boilerplate
// look up what it means
emitLn('ORG\t$1000');
label('START');
}
function label(s) {
process.stdout.write(s + ':\n');
}
function emitLn(s) {
emit(s);
process.stdout.write('\n');
}
exports.emitLn = emitLn;
function simHalt() {
emitLn('SIMHALT');
}
function asmFooter() {
emitLn('END\tSTART');
}
function init() {
asmHeader();
return getChar()
.then(() => {
return skipWhite();
});
}
exports.init = init;
function finish() {
asmFooter();
}
exports.finish = finish;
/** skeletal main program */
function main() {
return init()
.then(() => {
});
}