Skip to content

Commit

Permalink
increase size of words table to 256
Browse files Browse the repository at this point in the history
  • Loading branch information
devyn committed Aug 16, 2023
1 parent 6372853 commit 59b8ef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stage1/words.s
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.bss

.set WORDS_HASH_BITS, 6
.set WORDS_HASH_BITS, 8
.set WORDS_LEN, (1 << WORDS_HASH_BITS)

# global definitions hashtable
Expand Down
2 changes: 1 addition & 1 deletion stage2/22-words-util.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
(call-native acquire-object$ 0 addr)
(deref addr))))))

;(map (fn (index) (length (get-words index))) (range 0 63))
;(map (fn (index) (length (get-words index))) (range 0 255))

0 comments on commit 59b8ef3

Please sign in to comment.