]> gitweb.factorcode.org Git - factor.git/commitdiff
cpu.8080: fix stack effects.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 19 Oct 2011 02:15:09 +0000 (19:15 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 19 Oct 2011 02:15:09 +0000 (19:15 -0700)
extra/cpu/8080/emulator/emulator.factor

index 6207b51d8c24db18ae52735fb6f26fcaa948fdd7..f8284866900c5ef2475d0636f1d038879c2f34a6 100644 (file)
@@ -1395,11 +1395,11 @@ SYMBOL: last-opcode
 
 SYNTAX: INSTRUCTION:  ";" parse-tokens parse-instructions ;
 
-SYNTAX: cycles 
+SYNTAX: cycles
   #! Set the number of cycles for the last instruction that was defined.
   scan-token string>number last-opcode get-global instruction-cycles set-nth ;
 
-SYNTAX: opcode ( -- )
+SYNTAX: opcode
   #! Set the opcode number for the last instruction that was defined.
   last-instruction get-global 1quotation scan-token hex>
   dup last-opcode set-global set-instruction ;