]> gitweb.factorcode.org Git - factor.git/commitdiff
cpu.x86.assembler: fix help-lint problem
authorBjörn Lindqvist <bjourne@gmail.com>
Mon, 23 May 2016 00:26:28 +0000 (02:26 +0200)
committerBjörn Lindqvist <bjourne@gmail.com>
Mon, 23 May 2016 00:26:28 +0000 (02:26 +0200)
basis/cpu/x86/assembler/assembler-docs.factor

index 9a880ae6bf790b17dae36a8febc2badbe075b0b8..05afce5f39d1059058a695d8ca78bf5bbc2dd94b 100644 (file)
@@ -30,11 +30,11 @@ HELP: JE
 } ;
 
 HELP: MOV
-{ $values { "dst" "destination" "src" "source" } }
+{ $values { "dst" "destination" } { "src" "source" } }
 { $description "Moves a value from one place to another." } ;
 
 HELP: immediate-1/4
-{ $values { "dst" "dst" } { "imm" "imm" } { "reg,rex.w,opcode" } }
+{ $values { "dst" "dst" } { "imm" "imm" } { "reg,rex.w,opcode" sequence } }
 { $description "If imm is a byte, compile the opcode and the byte. Otherwise, set the 8-bit operand flag in the opcode, and compile the cell. The 'reg' is not really a register, but a value for the 'reg' field of the mod-r/m byte." } ;
 
 HELP: zero-extendable?