Skip to content

Commit 6ea89ea

Browse files
committed
Merge pull request #78 from NETponents/75
75
2 parents 122b6d8 + d076bef commit 6ea89ea

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ install:
1818
- python -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/master/scripts/get-platformio.py)"
1919
script:
2020
- platformio ci --project-conf ./platformio.ini
21-
- cd ./bootloader
21+
- cd ./boot
2222
# Install ParseBasic interpreter version 0.1.0
23-
- python -c "$(curl -fsSL https://raw.githubusercontent.com/NETponents/ParseBasic/v0.1.1/pb.py)" ./bootloader.pba
23+
- python -c "$(curl -fsSL https://raw.githubusercontent.com/NETponents/ParseBasic/v0.1.1/pb.py)" ./boot.pba

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Open up the **~/src** folder. Inside, you should find several code files. Go ahe
5656

5757
=====
5858

59-
Once that is done, we can install Octoduino to the SD card. Go ahead an plug it into your computer. Make sure that the card is empty. Format the card to FAT32. Now copy everything ***IN*** the folder **~/bootloader** from the Octoduino source to the SD card.
59+
Once that is done, we can install Octoduino to the SD card. Go ahead an plug it into your computer. Make sure that the card is empty. Format the card to FAT32. Now copy everything ***IN*** the folder **~/boot** from the Octoduino source to the SD card.
6060

6161
The last part is to copy over your own code files. Right now, the only language supported is ParseBasic. This is basically the "Assembly" language of Octoduino. In the future, we'll add more languages as we develop Octoduino. See the documentation on how to create your own ParseBasic file.
6262

bootloader/bootloader.pba boot/boot.pba

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PRINT "====================================";
66
NEWPRINT;
77
PRINT "Initializing SWAP";
88
NEWPRINT;
9-
EXTLOAD /boot/swapinit.pba;
9+
EXTLOAD /pblib/swapinit.pba;
1010
PRINT "PBVM is ready";
1111
NEWPRINT;
1212
PRINT "Attempting to load /run.pba";
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
CREATESWAP;
22
NEW $testvar Hello World;
33
SET $testvar Hello2;
4-
DELETE $testvar;
4+
DELETE $testvar;

0 commit comments

Comments
 (0)