mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 19:50:30 +01:00
This allows HE to execute code from the ROMFS in MRAM. Signed-off-by: Damien George <damien@micropython.org>
8 lines
138 B
Python
8 lines
138 B
Python
# Change working directory to ROMFS, so boot.py and main.py can run from there.
|
|
try:
|
|
import os
|
|
|
|
os.chdir("/rom")
|
|
except:
|
|
pass
|