diff options
Diffstat (limited to 'src/device/asm.go')
-rw-r--r-- | src/device/asm.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/device/asm.go b/src/device/asm.go index f441b6ae2..49ddbc3ef 100644 --- a/src/device/asm.go +++ b/src/device/asm.go @@ -9,12 +9,12 @@ func Asm(asm string) // effects, as it would otherwise be optimized away. The inline assembly string // recognizes template values in the form {name}, like so: // -// arm.AsmFull( -// "str {value}, {result}", -// map[string]interface{}{ -// "value": 1 -// "result": &dest, -// }) +// arm.AsmFull( +// "str {value}, {result}", +// map[string]interface{}{ +// "value": 1 +// "result": &dest, +// }) // // You can use {} in the asm string (which expands to a register) to set the // return value. |