-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathsectorlisp.S
More file actions
335 lines (311 loc) · 8.26 KB
/
sectorlisp.S
File metadata and controls
335 lines (311 loc) · 8.26 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
│vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│
╞══════════════════════════════════════════════════════════════════════════════╡
│ Copyright 2020 Justine Alexandra Roberts Tunney │
│ Copyright 2021 Alain Greppin │
│ Some size optimisations by Peter Ferrie │
│ │
│ Permission to use, copy, modify, and/or 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. │
╚─────────────────────────────────────────────────────────────────────────────*/
// LISP meta-circular evaluator in a MBR
// Compatible with the original hardware
// This is the friendly extended version
// This adds (FOO . BAR) support to Read
// It print errors on undefined behavior
// It can also DEFINE persistent binding
.code16
.globl _start
_start: .asciz "NIL" # dec %si ; dec %cx ; dec %sp
kT: .asciz "T" # add %dl,(%si) boot A:\ DL=0
start: ljmp $0x7c00>>4,$begin # cs = 0x7c00 is boot address
.asciz ""
kDefine:.asciz "DEFINE"
kCond: .asciz "COND"
kQuote: .asciz "QUOTE"
kCar: .asciz "CAR" # ordering matters
kCdr: .asciz "CDR" # ordering matters
kCons: .asciz "CONS" # ordering matters
kEq: .asciz "EQ" # ordering matters
kAtom: .asciz "ATOM" # needs to be last
GetToken: # GetToken():al
mov %cx,%di
1: mov %dl,%al
cmp $' ',%al
jbe 2f
stosb
xchg %ax,%si
2: call GetChar # exchanges dx and ax
cmp $' ',%al
jbe 1b
cmp $')',%al
jbe 3f
cmp $')',%dl
ja 1b
3: mov %bh,(%di) # bh is zero
xchg %si,%ax
ret
.PrintList:
mov $'(',%al
2: push (%bx,%si)
mov (%si),%si
call .PutObject
mov $' ',%al
pop %si # restore 1
test %si,%si
js 2b # jump if cons
jz 4f # jump if nil
mov $249,%al # bullet (A∙B)
call .PutObject
4: mov $')',%al
jmp PutChar
.PutObject: # .PutObject(c:al,x:si)
.PrintString: # nul-terminated in si
call PutChar # preserves si
PrintObject: # PrintObject(x:si,a:di)
test %si,%si # set sf=1 if cons
js .PrintList # jump if not cons
.PrintAtom:
lodsb
test %al,%al # test for nul terminator
jnz .PrintString # -> ret
ret
GetObject: # called just after GetToken
cmp $'(',%al
je GetList
# jmp Intern
Intern: push %cx # Intern(cx,di): ax
sub %cx,%di
inc %di
push %di
xor %di,%di
1: pop %cx
pop %si
push %si
push %cx
mov %di,%ax
cmp %bh,(%di)
je 8f
rep cmpsb # memcmp(di,si,cx)
je 9f
xor %ax,%ax
dec %di
2: scasb
jne 2b
jmp 1b
8: rep movsb # memcpy(di,si,cx)
9: pop %cx
pop %cx
ret
GetChar:xor %ax,%ax # GetChar→al:dl
int $0x16 # get keystroke
PutChar:mov $0x0e,%ah # prints CP-437
push %bp # scroll up bug
int $0x10 # vidya service
pop %bp # scroll up bug
cmp $'\r',%al # don't clobber
jne .retDx # look xchg ret
mov $'\n',%al
jmp PutChar
////////////////////////////////////////////////////////////////////////////////
Gc: cmp %dx,%di # Gc(x:di,A:dx,B:si):ax
jb .retDi # we assume immutable cells
push (%bx,%di) # mark prevents negative gc
mov (%di),%di
call Gc
pop %di
push %ax
call Gc
pop %di
call Cons
sub %si,%ax # ax -= C - B
add %dx,%ax
ret
Evlis: test %di,%di # Evlis(m:di,a:dx):ax
jz .retDi # jump if nil
push (%bx,%di) # save 1 Cdr(m)
mov (%di),%ax
call Eval
pop %di # restore 1
push %ax # save 2
call Evlis
# jmp xCons
xCons: pop %di # restore 2
Cons: xchg %di,%cx # Cons(m:di,a:ax):ax
mov %cx,(%di) # must preserve si
mov %ax,(%bx,%di)
lea 4(%di),%cx
.retDi: xchg %di,%ax
ret
GetList:call GetToken
cmp $')',%al
je .retF
cmp $'.',%al # FRIENDLY FEATURE
je 1f # CONS DOT LITERAL
call GetObject
push %ax # popped by xCons
call GetList
jmp xCons
1: call Read
push %ax
call GetList
pop %ax
ret
.retDx: xchg %dx,%ax
ret
.resolv:push %si
call Assoc # do (fn si) → ((λ ...) si)
pop %si
Apply: test %ax,%ax # Apply(fn:ax,x:si:a:dx):ax
jns .switch # jump if atom
xchg %ax,%di # di = fn
.lambda:mov (%bx,%di),%di # di = Cdr(fn)
push %di # for .EvCadr
mov (%di),%di # di = Cadr(fn)
Pairlis:test %di,%di # Pairlis(x:di,y:si,a:dx):dx
jz .EvCadr # return if x is nil
xor %ax,%ax # FRIENDLY FEATURE
test %si,%si # DEFAULT NIL ARGS
jz 1f
lodsw # ax = Car(y)
1: push (%bx,%di) # push Cdr(x)
mov (%di),%di # di = Car(x)
test %si,%si
jz 1f
mov (%si),%si # si = Cdr(y)
1: call Cons # Cons(Car(x),Car(y))
xchg %ax,%di
xchg %dx,%ax
call Cons # Cons(Cons(Car(x),Car(y)),a)
xchg %ax,%dx # a = new list
pop %di # grab Cdr(x)
jmp Pairlis
.switch:cmp $kAtom,%ax # eq is last builtin atom
ja .resolv # ah is zero if not above
mov (%si),%di # di = Car(x)
je .ifAtom
cmp $kCons,%ax
jae .ifCons
test %di,%di # FRIENDLY FEATURE
jns .retF # CAR/CDR(NIL)→NIL
.ifCar: cmp $kCar,%al
je Car
.ifCdr: jmp Cdr
.ifCons:mov (%bx,%si),%si # si = Cdr(x)
lodsw # si = Cadr(x)
je Cons
.isEq: xor %di,%ax # we know for certain it's eq
jne .retF
.retT: mov $kT,%al
ret
.ifAtom:test %di,%di # test if atom
jns .retT
.retF: xor %ax,%ax # ax = nil
ret
Define: xchg %dx,%ax
call Cons
jmp .retDx
Assoc: mov %dx,%si # Assoc(x:ax,y:dx):ax
1: test %si,%si # FRIENDLY FEATURE
jns Undef # PRINT ?X IF X∉DX
mov (%si),%di
mov (%bx,%si),%si
scasw
jne 1b
.byte 0xf6
Cadr: mov (%bx,%di),%di # contents of decrement register
.byte 0x3C # cmp §scasw,%al (nop next byte)
Cdr: scasw # increments our data index by 2
Car: mov (%di),%ax # contents of address register!!
ret
1: mov (%bx,%di),%di # di = Cdr(c)
Evcon: push %di # save c
mov (%di),%si # di = Car(c)
lodsw # ax = Caar(c)
call Eval
pop %di # restore c
test %ax,%ax # nil test
jz 1b
push (%di) # push Car(c)
.EvCadr:pop %di
call Cadr # ax = Cadar(c)
# jmp Eval
Eval: test %ax,%ax # Eval(e:ax,a:dx):ax
jz 1f
jns Assoc # lookup val if atom
xchg %ax,%si # di = e
lodsw # ax = Car(e)
cmp $kQuote,%ax # maybe CONS
mov (%si),%di # di = Cdr(e)
je Car
cmp $kCond,%ax
je Evcon # ABC Garbage Collector
jb Define
push %dx # save a
push %cx # save A
push %ax
call Evlis
xchg %ax,%si
pop %ax
call Apply
pop %dx # restore A
mov %cx,%si # si = B
xchg %ax,%di
call Gc
mov %dx,%di # di = A
sub %si,%cx # cx = C - B
rep movsb
mov %di,%cx # cx = A + (C - B)
pop %dx # restore a
1: ret
Undef: push %ax
mov $'?',%al
call PutChar
pop %ax
jmp Catch
Read: call GetToken
call GetObject
ret
begin: mov $0x8000,%sp
push %cs
pop %ds
push %cs
pop %es
push %cs
pop %ss
mov $2,%bx
mov %sp,%cx
xor %bp,%bp
main: xor %dx,%dx
call Read
mov %bp,%dx
call Eval
mov %dx,%bp
cmp $kDefine,%ax
je main
Catch: xchg %ax,%si
call PrintObject
mov $'\r',%al
call PutChar
jmp main
.sig: .fill 510 - (. - _start), 1, 0xce
.word 0xAA55
.type .sig,@object
.type kDefine,@object
.type kQuote,@object
.type kCond,@object
.type kAtom,@object
.type kCar,@object
.type kCdr,@object
.type kCons,@object
.type kEq,@object