Project restructuring to support the new direction
This commit is contained in:
parent
d109b6f374
commit
330aca002f
@ -1,9 +1,7 @@
|
|||||||
(define-module (scmvm)
|
(define-module (scmvm)
|
||||||
#:use-module (scmvm vm)
|
|
||||||
#:use-module (scmvm assembler)
|
|
||||||
#:use-module (scmvm debugger)
|
|
||||||
#:use-module (ice-9 ports)
|
#:use-module (ice-9 ports)
|
||||||
#:export (read-all-instructions instructions-from-file))
|
#:export (read-all-instructions
|
||||||
|
instructions-from-file))
|
||||||
|
|
||||||
(define (read-all-instructions)
|
(define (read-all-instructions)
|
||||||
(let ([inst (read)])
|
(let ([inst (read)])
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
(define-module (scmvm assembler)
|
(define-module (scmvm language assembler)
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (scmvm vm)
|
#:use-module (scmvm vm)
|
||||||
#:use-module (rnrs bytevectors)
|
#:use-module (rnrs bytevectors)
|
@ -1,8 +0,0 @@
|
|||||||
(use-modules (scmvm)
|
|
||||||
(scmvm vm)
|
|
||||||
(scmvm assembler)
|
|
||||||
(scmvm debugger))
|
|
||||||
|
|
||||||
(define my-instructions (instructions-from-file "./asm/runtime.scm"))
|
|
||||||
(define my-debugger (make-debugger my-instructions))
|
|
||||||
(define my-vm (debugger-vm my-debugger))
|
|
Loading…
Reference in New Issue
Block a user