-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.scm
More file actions
34 lines (28 loc) · 750 Bytes
/
all.scm
File metadata and controls
34 lines (28 loc) · 750 Bytes
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
;;;; loader
(require 'syntax 'match 'stuff 'megalet 'logical)
(features
(cons (case (system-software)
((Linux) 'linux)
(else (error "unknown host system")))
(features)))
(define bytevector? (const #f))
(define (bytevector-length x) (error "no bytevectors"))
(define (bytevector-u8-ref x y) (error "no bytevectors"))
(define (nan? x) (and (number? x) (not (= x x))))
(define (finite? x) (not (= (string->number "+inf.0") (abs x))))
(load "version.scm")
(load "alexpand.scm")
(load "source.scm")
(load "cp.scm")
(load "simplify.scm")
(load "uv.scm")
(load "cc.scm")
(load "cps.scm")
(load "mangle.scm")
(load "program.scm")
(load "tsort.scm")
(load "ra.scm")
(load "cmplr.scm")
(load "x86_64.scm")
(load "main.scm")
(load "repl.scm")