From 188f2ca65b3c0d3cef8ee9981ec56d4a972b0a88 Mon Sep 17 00:00:00 2001 From: cuu Date: Fri, 28 Mar 2025 22:47:50 +0800 Subject: [PATCH] update readme --- Code/FUZIX/README.md | 8 +++++++- Code/MP3Player/README.md | 8 ++++++++ Code/NES/README.md | 8 +++++++- Code/PicoMite/README.md | 6 +++++- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/Code/FUZIX/README.md b/Code/FUZIX/README.md index 50e8314..00e44bb 100644 --- a/Code/FUZIX/README.md +++ b/Code/FUZIX/README.md @@ -1,10 +1,16 @@ # How to compile FUZIX + +All the operations in this document are performed in a Linux environment. A basic understanding of Linux, as well as familiarity with Git and pico sdk development, is required. + ```bash git clone https://github.com/EtchedPixels/FUZIX.git cd FUZIX git reset --hard f0d56efd5ba70211c4c2d0b084a154fcff30ac5a -git apply fuzix.patch + +git clone https://github.com/clockworkpi/PicoCalc.git #get patch code + +git apply PicoCalc/Code/FUZIX/fuzix.patch export PICO_SDK_PATH=/to/where/your/pico/sdk/is cd Kernel/platform/platform-rpipico diff --git a/Code/MP3Player/README.md b/Code/MP3Player/README.md index 9972652..1069297 100644 --- a/Code/MP3Player/README.md +++ b/Code/MP3Player/README.md @@ -1,5 +1,7 @@ # PicoCalc simple mp3 player +All the operations in this document are performed in a Linux environment. A basic understanding of Linux, as well as familiarity with Git and cross-compilation development, is required. + ## toolchain ``` @@ -11,6 +13,12 @@ https://github.com/cuu/YAHAL.git branch picocalc ## How to compile +### Get this code +``` +git clone https://github.com/clockworkpi/PicoCalc.git + +``` + ### Get YAHAL first ``` git clone -b picocalc https://github.com/cuu/YAHAL.git diff --git a/Code/NES/README.md b/Code/NES/README.md index 5a1d9f5..ac26953 100644 --- a/Code/NES/README.md +++ b/Code/NES/README.md @@ -1,9 +1,15 @@ # How to compile NES emulator + +All the operations in this document are performed in a Linux environment. A basic understanding of Linux, as well as familiarity with Git and pico sdk development, is required. + ```bash git clone https://github.com/shapoco/shapones.git cd shapones -git apply shapones.patch +git clone https://github.com/clockworkpi/PicoCalc.git #get patch code + +git apply PicoCalc/Code/NES/shapones.patch + cd samples/v3/ mkdir build cd build diff --git a/Code/PicoMite/README.md b/Code/PicoMite/README.md index afce9ce..fcd47ab 100644 --- a/Code/PicoMite/README.md +++ b/Code/PicoMite/README.md @@ -1,10 +1,14 @@ # How to compile PicoMite(MMBasic) +All the operations in this document are performed in a Linux environment. A basic understanding of Linux, as well as familiarity with Git and pico sdk development, is required. + + ```bash git clone https://github.com/cuu/PicoMite.git cd PicoMite -git apply PicoMite.patch +git clone https://github.com/clockworkpi/PicoCalc.git #get patch code +git apply PicoCalc/Code/PicoMite/PicoMite.patch export PICO_SDK_PATH=/to/where/your/pico/sdk/is mkdir build