Files
kolibrios/programs/develop/brainfuck/examples/movedataloops.bf
Daniel Joseph 02434e6b15
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 24s
Build system / Build (pull_request) Failing after 18m0s
Add Brainfuck Interpreter with interactive REPL
Console-based REPL Implementation
- Use Jump table dispatch for execution
- RLE preprocessing as optimization
- Buffered output to minimize redraw
- File loading support via run command
- Add REPL commands: help, run, clear, reset, exit
- Two implementation: bf_shell_interp.asm, bf_console_interp.asm

This is my first contribution to KolibriOS for GSOC 2026
 WASM runtime project preparation
2026-03-09 09:57:09 +01:00

66 lines
1.4 KiB
Brainfuck

>+ Set c1 = 1
>++ Set c2 = 2
>+++ Set c3 = 3
>++++ Set c4 = 4
[->>>>>>>>+<<<<<<<<] Move the value of c4 to c12
<
[->>>>>>>>>+<<<<<<<<<] Add the value of c3 to c12
Print the value of c12 as a single ASCII digit
>>>>>>>>>
++++++++ ++++++++ ++++++++ ++++++++ ++++++++ ++++++++.
<
[->+<] Add the value of c11 (which is 0) to c12
Print the value of c12 as a single ASCII digit
>.
<<<<<<<<<<<
[->+<] Add the value of c1 to c2 and print c2
>
++++++++ ++++++++ ++++++++ ++++++++ ++++++++ ++++++++.
>
[-<+>] Add the value of c3 (which is 0) to c2 nd print c2
<.
>+++ Set c3 to 3 and add its value to c2 again and print c2
[-<+>]
<.
Now in a loop set c3 to 2 and add it with a move loop to c6
[-] c2 is the loop counter initialized to 4
++++
[
>++ set c3 to 2
[->>>+<<<] add c3 to c6
<- decrement loop counter
]
>>>> Print c6
++++++++ ++++++++ ++++++++ ++++++++ ++++++++ ++++++++.
Similarly in a loop do the same but now move data left from c6 to c4
<<<<
[-] c2 is the loop counter initialized to 4
++++
[
>>>>[-]++
[-<<+>>]
<<<<-
]
>> Print c4
++++++++ ++++++++ ++++++++ ++++++++ ++++++++ ++++++++.