]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/cpu/8080/emulator/emulator.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / cpu / 8080 / emulator / emulator.factor
index 557bddc6f7f6f934abdeaba7cdd36f414eb1c919..b5ca7136710c110f57989ea74cded63b7288e822 100644 (file)
@@ -361,7 +361,7 @@ CONSTANT: sign-flag         0x80
 
 : pop-pc ( cpu -- pc )
     #! Pop the value of the PC off the stack.
-    [ sp>> ] [ read-word ] [ -2 swap decrement-sp ] tri ; 
+    [ sp>> ] [ read-word ] [ -2 swap decrement-sp ] tri ;
 
 : push-sp ( value cpu -- )
     [ 2 swap decrement-sp ] [ sp>> ] [ write-word ] tri ;