Skip to content

Commit

Permalink
Some missing register definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanhorn committed Dec 6, 2024
1 parent 4be7a25 commit 7c1d52e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mountebank/compile-define.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"compile-expr.rkt"
a86/ast)

(define rax 'rax)
(define rbx 'rbx)

;; [Listof Defn] -> [Listof Id]
(define (define-ids ds)
(match ds
Expand Down
3 changes: 3 additions & 0 deletions mug/compile-define.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"compile-expr.rkt"
a86/ast)

(define rax 'rax)
(define rbx 'rbx)

;; [Listof Defn] -> [Listof Id]
(define (define-ids ds)
(match ds
Expand Down
1 change: 1 addition & 0 deletions neerdowell/compile-define.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
a86/ast)

(define rax 'rax)
(define rbx 'rbx)

;; [Listof Defn] -> [Listof Id]
(define (define-ids ds)
Expand Down

0 comments on commit 7c1d52e

Please sign in to comment.