aboutsummaryrefslogtreecommitdiffstats
path: root/forth
diff options
context:
space:
mode:
Diffstat (limited to 'forth')
-rw-r--r--forth/core.fth4
-rw-r--r--forth/fib.fth4
2 files changed, 4 insertions, 4 deletions
diff --git a/forth/core.fth b/forth/core.fth
index 8ec5b71..e9fc133 100644
--- a/forth/core.fth
+++ b/forth/core.fth
@@ -51,8 +51,8 @@
: else ['] _jmp , here 0 , swap here swap ! ; imm
: postpone _' dup 0 = if exit then
- 1 = swap ['] _lit , , if ['] execute ,
- else ['] , , then ; imm
+ 1 = swap ['] _lit , , if ['] execute
+ else ['] , then , ; imm
: over 1 pick ;
: rot >r swap r> swap ;
diff --git a/forth/fib.fth b/forth/fib.fth
index 671528a..3efdd2c 100644
--- a/forth/fib.fth
+++ b/forth/fib.fth
@@ -9,10 +9,10 @@
5 sys fib 5 sys >r 2drop r> ;
variable avg 0 avg !
-2000 constant iters
+1000 constant iters
: bench ( -- )
- iters 0 do 100 fibbench avg +! loop
+ iters 0 do 1000 fibbench avg +! loop
avg @ iters / avg ! ;
bench ." avg time: " avg @ . ." us" cr