mirror of
https://gitlab.com/jusax23/raspberry-pi-pico-machine-code-emulator.git
synced 2024-11-22 14:46:37 +01:00
8 lines
79 B
Common Lisp
8 lines
79 B
Common Lisp
|
|
||
|
(defvar i:uint32 0)
|
||
|
|
||
|
(loop while (< i 0xffff)
|
||
|
(print i)
|
||
|
(let i (+ i 1))
|
||
|
)
|