diff --git a/neerdowell/compile-ops.rkt b/neerdowell/compile-ops.rkt index 48be511..28e3b17 100644 --- a/neerdowell/compile-ops.rkt +++ b/neerdowell/compile-ops.rkt @@ -1,5 +1,7 @@ #lang racket -(provide compile-op pad-stack unpad-stack assert-proc compile-make-struct) +(provide compile-op pad-stack unpad-stack assert-proc compile-make-struct + ; for notes + assert-cons) (require "ast.rkt" "types.rkt" "utils.rkt" a86/ast) (define rax 'rax) ; return diff --git a/outlaw/compile.rkt b/outlaw/compile.rkt index d0171d8..70b0499 100644 --- a/outlaw/compile.rkt +++ b/outlaw/compile.rkt @@ -1,5 +1,6 @@ #lang racket (provide (all-defined-out)) +(provide r8 rax) (require "stdlib.rkt" "ast.rkt" "a86/ast.rkt"