Multiple lookup tables
zabiel
Posts: 2
Hello. I need to use several lookup tables(DATA,DATA1...) in one program and it should change after some time (like after 1s). Is it possible to do it in assembler language with 8051 microcontroler? Thank you in advance.
MAIN: MOV DPTR,#[COLOR=#ff0000]DATA [/COLOR]CLR A MOVC A,@A+DPTR MOV R2,A INC DPTR ...... [COLOR=#ff0000]DATA[/COLOR]: DB 36D DB 1D,254D ;DB 22D,233D ...
Comments