Another fix for GitHub. The markdown forces
Fix for markdown table.
This commit is contained in:
parent
c08befee8e
commit
cdc91a982c
1 changed files with 39 additions and 39 deletions
|
@ -204,7 +204,7 @@ as a value source for the first input value.
|
|||
## Assembler Mnemonics
|
||||
|
||||
| Mnemonic | Arg? | i0 | i1 | Cmd | CmdInfo | Output | Flags? | Description |
|
||||
|----------|------|------|------|---------|----------|---------|--------|--|
|
||||
|----------|------|------|------|---------|----------|---------|--------|-------------------------------------------------------------------------------------------------|
|
||||
| nop | no | zero | zero | copy | 0 | discard | no | Does noting |
|
||||
| push | yes | arg | zero | copy | 0 | push | no | Pushes its argument on the stack |
|
||||
| drop | no | pop | zero | copy | 0 | discard | no | Removes the top value from the stack |
|
||||
|
@ -234,12 +234,12 @@ as a value source for the first input value.
|
|||
| and | no | pop | pop | math | 5 | push | no | Pops two values and pushes the bitwise and. |
|
||||
| or | no | pop | pop | math | 6 | push | no | Pops two values and pushes the bitwise or. |
|
||||
| xor | no | pop | pop | math | 7 | push | no | Pops two values and pushes the exclusive or. |
|
||||
| not | no | pop | zero | math | 8 | push | no | Pops a single value and pushes the bitwise not. |
|
||||
| rol | no | pop | pop | math | 9 | push | no | `TO BE SPECIFIED` |
|
||||
| ror | no | pop | pop | math | 10 | push | no | `TO BE SPECIFIED` |
|
||||
| asl | no | pop | pop | math | 11 | push | no | `TO BE SPECIFIED` |
|
||||
| asr | no | pop | pop | math | 12 | push | no | `TO BE SPECIFIED` |
|
||||
| shl | no | pop | pop | math | 13 | push | no | `TO BE SPECIFIED` |
|
||||
| shr | no | pop | pop | math | 14 | push | no | `TO BE SPECIFIED` |
|
||||
| not | no | pop | zero | math | 8 | push | no | Pops a single value and pushes the bitwise not |
|
||||
| rol | no | pop | pop | math | 9 | push | no | TO BE SPECIFIED |
|
||||
| ror | no | pop | pop | math | 10 | push | no | TO BE SPECIFIED |
|
||||
| asl | no | pop | pop | math | 11 | push | no | TO BE SPECIFIED |
|
||||
| asr | no | pop | pop | math | 12 | push | no | TO BE SPECIFIED |
|
||||
| shl | no | pop | pop | math | 13 | push | no | TO BE SPECIFIED |
|
||||
| shr | no | pop | pop | math | 14 | push | no | TO BE SPECIFIED |
|
||||
| syscall | yes | zero | zero | syscall | 0 | discard | no | Mnemonic for a generic syscall. |
|
||||
| hwio | yes | zero | zero | hwio | 0 | discard | no | Mnemonic for a generic hwio. |
|
Loading…
Reference in a new issue