Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revisionBoth sides next revision
asm [2019/05/07 07:39] – created neilsasm [2019/05/07 21:59] neils
Line 18: Line 18:
   rem -- that's all   rem -- that's all
      
-Note: the compiler can't validate the inline assembly code. It will be barely copied into the compiled code. DASM will report any errors. You have to take special care with the ''ASM'' directive. Please consult the DASM docs carefully.+**Note**: the compiler can't validate the inline assembly code. It will be barely copied into the compiled code. DASM will report any errors. You have to take special care with the ''ASM'' directive. Please consult the DASM docs carefully
 + 
 +A common mistake when writing DASM code is to forget that a line must start with a label or at least one space. Note in the example above that assembly lines are prepended with spaces.