On this page:
assemble
8.12

1 Assembler🔗ℹ

 (require asm/base) package: asm

syntax

(assemble form-or-label ...)

 
form-or-label = form
  | #:section section-id
  | #:global global-id
  | #:label label-id
Evaluates each form similarly to a begin block. Each section-id selects the section of the object to which the assembled bytes are appended. The default section is .text. global-id and label-id declare global and local symbols respectively. Returns a bin:object? containing assembled machine code from any evaluated instructions.