first working compile

This commit is contained in:
Jared Young 2019-11-08 02:22:29 +00:00
parent a0a8c22de6
commit 79f2169553
3 changed files with 14 additions and 3 deletions

View File

@ -6,3 +6,7 @@ Initially, only change is to strip out the STM32 related ifdef's.
After that, building a basic CMakeLists.txt file to import a bunch of code and tweak the files here until it successfully compiles.
Had to compile the minimal to get a few of the generated headers made for me until I can get around to bringing that into the CMake files.
Updated the Retro68 Console example to allow reading single characters.
And now I can run python. The REPL works, even can create functions.

10
mp-s7-src/TODO.md Normal file
View File

@ -0,0 +1,10 @@
Items that I should do/would be nice to have.
- See if using the Retro68 Console readline would be a better option, see the linux port for examples on how to override.
- Allow opening of files to run from a menu
- Peripheral Support(ie serial)
- Network Support(have to get networking running in my emulator first, my hardware is offline)
Fantasy category, for now:
- Add an editor.

View File

@ -340,9 +340,6 @@ char Console::ReadChar()
return 0;
}
if(c == '\r')
c = '\n';
return c;
}