mirror of
https://gitlab.com/jusax23/raspberry-pi-pico-machine-code-emulator.git
synced 2024-11-22 14:46:37 +01:00
Corrections
This commit is contained in:
parent
981b014f37
commit
40e726779a
1 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@ Recently I was wondering if it is possible to run a program from the pico's ram.
|
||||||
- float
|
- float
|
||||||
- bool
|
- bool
|
||||||
|
|
||||||
### Calculation
|
### Calculations
|
||||||
```lisp
|
```lisp
|
||||||
(+ a b)
|
(+ a b)
|
||||||
(+ a b c) ;...
|
(+ a b c) ;...
|
||||||
|
@ -38,13 +38,13 @@ Recently I was wondering if it is possible to run a program from the pico's ram.
|
||||||
(/ a b)
|
(/ a b)
|
||||||
(/ a b c) ;...
|
(/ a b c) ;...
|
||||||
```
|
```
|
||||||
###print
|
### print
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
(print a)
|
(print a)
|
||||||
```
|
```
|
||||||
|
|
||||||
###Comparisons and Branches
|
### Comparisons and Branches
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
(< 4 5)
|
(< 4 5)
|
||||||
|
@ -67,7 +67,7 @@ Set Variables:
|
||||||
(let myvar2 (+ 5 1))
|
(let myvar2 (+ 5 1))
|
||||||
```
|
```
|
||||||
|
|
||||||
###Functions
|
### Functions
|
||||||
Define and call Functions:
|
Define and call Functions:
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
|
|
Loading…
Reference in a new issue