MetalPizzaCat / BOBO

BOBO is BASIC styled languaged that compiles into assembly for i8080. This project is closer to a shitpost then actual languge for i8080
GNU General Public License v2.0
0 stars 0 forks source link

Code duplication #1

Closed MetalPizzaCat closed 2 years ago

MetalPizzaCat commented 2 years ago

Some code gets duplicated during compilation/parsing BOBO code

c = 2
a = c + 20

ASM

        mvi  a, 02
    sta  0852
    mvi  a, 02
    sta  0852
    lda  0852
    adi  32
    sta  0850

Intended result

        mvi  a, 02
    sta  0852
    lda  0852
    adi  32
    sta  0850