We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a022b commit 6053510Copy full SHA for 6053510
www/notes/a86.scrbl
@@ -951,14 +951,12 @@ Each register plays the same role as in x86, so for example
951
@defstruct*[Label ([x label?])]{
952
953
Creates a label from the given symbol. Each label in a
954
- program must be unique. Register names cannot be used
955
- as label names and names must follow the NASM restrictions
+ program must be unique. Labels must follow the NASM restrictions
956
on valid label names (see @racket[label?] for details).
957
958
@ex[
959
(Label 'fred)
960
(eval:error (Label "fred"))
961
- (eval:error (Label 'rax))
962
(eval:error (Label 'fred-wilma))
963
]
964
0 commit comments