Fixed bug in doc generator
This commit is contained in:
parent
528025d0ff
commit
258a6a4bd3
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ Opcode | Name
|
|||
<% output = " " + output unless output.blank? -%>
|
||||
Opcode | Argument | Stack
|
||||
---|---|---
|
||||
`0x<%= sorted_opcodes.find! { |opc| opc[1].name == opcode.name }[0].to_s(16).rjust(2, '0') %>` | <%= opcode.arg && "`#{opcode.arg}`" %> | <%= (opcode.stack.input.size > 0 && opcode.stack.output.size > 0) ? "`#{input}--#{output}`" : nil %>
|
||||
`0x<%= sorted_opcodes.find! { |opc| opc[1].name == opcode.name }[0].to_s(16).rjust(2, '0') %>` | <%= opcode.arg && "`#{opcode.arg}`" %> | <%= (opcode.stack.input.size > 0 || opcode.stack.output.size > 0) ? "`#{input}--#{output}`" : nil %>
|
||||
<%- if opcode.example -%>
|
||||
|
||||
```gnuassembler
|
||||
|
|
Loading…
Reference in a new issue