forked from cthulhuology/firth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.asm
executable file
·105 lines (83 loc) · 1.52 KB
/
image.asm
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; image.asm
;;
;; © 2012,2013 David J. Goehrig
;;
BITS 64
ORG 0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Include core macro files
%include "vm.asm"
%include "system.asm"
%include "net.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Initialize VM
vm
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Define core words...
definition boot
nop
nop
nop
.loop: jmp .loop
end boot
;; Operating System Interface
def arg1
def arg2
def arg3
def arg4
def arg5
def arg6
def os
;; Stack Functions
def rpush
def rpop
def dupe
def nip
def drop
def stack
;; Memory Functions
def free
def compile
def alloc
def fetch
def fetchplus
def store
def storeplus
def source
def dest
def deststore
def sourcefetch
; math routines
def addition
def subtract
def multiply
def divide
def negate
; logic routines
def andb
def orb
def xorb
def notb
def shiftl
def shiftr
; test / control
def equals
def zero
def less
def more
def if
def invoke
def continue
def forever
; dictionary
def create
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Constants, Variables, and Values
;dictionary_last: dq word_create ;; last word in dict.asm
;dictionary_free: dq dictionary_end
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; The dictionary
dictionary:
;; %include "dict.asm"
dictionary_end: dq 0