You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
evm-arduino
2
-
===========
1
+
evm-esp32
2
+
=========
3
3
4
-
A virtual machine for Arduino, allowing dynamic program updates.
4
+
A virtual machine for ESP32, allowing dynamic program updates.
5
5
6
6
Based on my [implementation of CHIP-8](https://github.com/bor0/chip-8), where the gaming related instructions are removed, and instead instructions for IO pin controlling are added.
Copy file name to clipboardExpand all lines: evm-arduino.ino
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
/*
2
-
This file is part of evm-arduino.
2
+
This file is part of evm-esp32.
3
3
4
-
evm-arduino is free software: you can redistribute it and/or modify
4
+
evm-esp32 is free software: you can redistribute it and/or modify
5
5
it under the terms of the GNU General Public License as published by
6
6
the Free Software Foundation, either version 3 of the License, or
7
7
(at your option) any later version.
8
8
9
-
evm-arduino is distributed in the hope that it will be useful,
9
+
evm-esp32 is distributed in the hope that it will be useful,
10
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
12
GNU General Public License for more details.
13
13
14
14
You should have received a copy of the GNU General Public License
15
-
along with evm-arduino. If not, see <http://www.gnu.org/licenses/>.
15
+
along with evm-esp32. If not, see <http://www.gnu.org/licenses/>.
16
16
17
17
*/
18
18
#include<HTTPClient.h>
@@ -22,7 +22,7 @@ along with evm-arduino. If not, see <http://www.gnu.org/licenses/>.
22
22
23
23
#include"include/vm.h"
24
24
25
-
// Sometimes downloading from GitHub causes the device to reboot. Best store on a local web server without https: https://raw.githubusercontent.com/bor0/evm-arduino/main/bin/example.bin
25
+
// Sometimes downloading from GitHub causes the device to reboot. Best store on a local web server without https: https://raw.githubusercontent.com/bor0/evm-esp32/main/bin/example.bin
0 commit comments