mirror of
https://github.com/G42makes/mp-s7.git
synced 2025-04-03 00:29:34 +00:00
first working compile
This commit is contained in:
parent
a0a8c22de6
commit
79f2169553
mp-s7-src
@ -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
10
mp-s7-src/TODO.md
Normal 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.
|
||||
|
@ -340,9 +340,6 @@ char Console::ReadChar()
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(c == '\r')
|
||||
c = '\n';
|
||||
|
||||
return c;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user