10.2 Keyword 'asm'
-------------------
The keyword 'asm' is used like its '$' as a prefix to an assembler
command. A block of assembler commands follows, as in the example:
asm {
push AX
labl:
push BX
mov AX,0x1234
jmp short labl
}
Labels are permitted inside blocks of assembler commands.