retroforth/doc/book/64-bit
crc 79be618035 checkin some missing files
FossilOrigin-Name: 0b75c4f5deef7823d4302a5480af24b164a4014456e11a176528365ee9397bb9
2019-11-21 19:35:41 +00:00

16 lines
379 B
Text

Building a 64-bit RETRO system:
- change CELL to int64_t in these files:
source/interfaces/retro-unix.c
tools/muri.c
tools/embedimage.c
tools/extend.c
- update the `n:MIN` and `n:MAX` in source/retro.forth to:
:n:MAX (-n) #9223372036854775806 ;
:n:MIN (-n) #-9223372036854775807 ;
Rebuild and enjoy your new 64-bit RETRO system.