; Yeahbut - Feb 2024 ; Example 1 - ytd 12-bit Computer ; Fibonacci .0x5 main: ; Initialize values ldi 1 or D0 MP ZR or D1 ZR ZR or D2 ZR ZR loop: ; Output current value ldi 0x7FE str D0 ; Move values down or D2 D1 ZR or D1 D0 ZR ; Add last two values to get the next value add D0 D1 D2 ldi :loop or PC MP ZR