retroforth/vm/nga-c-native-x86
crc 703ec71fb1 retro.forth: add a:index-of-string
FossilOrigin-Name: 67e61ed2250bb46b92e68c6f98c1bfb35988399a4ef554bc5f7ad3d0fdb52e41
2020-02-03 15:46:20 +00:00
..
bin
x86
386.ld
386.s
386flat.ld
image.c retro.forth: add a:index-of-string 2020-02-03 15:46:20 +00:00
Makefile fix errors when building vm/nga-c-native-x86 after the source tree reorganization 2019-12-18 13:02:53 +00:00
README.md
retro.c fix errors when building vm/nga-c-native-x86 after the source tree reorganization 2019-12-18 13:02:53 +00:00

RETRO/NATIVE

This directory contains some experiments in building a RETRO system to run directly on hardware. As a stepping stone, it also includes some builds which require a host kernel, but no standard C library.

Initial Objectives:

  • Reuse as much of the existing VM implementation (in C) as possible.
  • Don't require a full blown kernel & userland to run
  • Work with a completely standard RETRO image
  • Minimally viable system: the basic listener (REPL)
  • Work on 32-bit x86 systems

Future Goals:

  • Support for more processors

    • x86-64
    • ARM (32-bit)
    • ARM (64-bit)
    • RISC-V
    • MIPS M4K (PIC32)

Current Status:

  • Working builds w/minimal host dependencies:

    • FreeBSD (32-bit, x86)
    • FreeBSD (64-bit, x86)
    • Linux (32-bit, x86)
    • Native (32-bit, x86, multiboot)