Skip to content

Commit f93dc2a

Browse files
committed
Closes #182.
1 parent e03de0a commit f93dc2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/notes/hoax.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ So, suppose we want to create the string @racket["abc"]:
307307
(Mov 'eax (char->integer #\b))
308308
(Mov (Offset 'rbx 12) 'eax) ; write #\b in string slot 1
309309
(Mov 'eax (char->integer #\c))
310-
(Mov (Offset 'ebx 16) 'rax) ; write #\c in string slot 2
310+
(Mov (Offset 'rbx 16) 'eax) ; write #\c in string slot 2
311311
(Mov 'rax 'rbx)
312312
(Or 'rax type-str) ; tag pointer as a string
313313
(Add 'rbx 24)) ; advance rbx three words(!)

0 commit comments

Comments
 (0)