Hello:
I have an application which is taxing my meager skills (using indexes). Basically I have a list of "words" in my dictionary & a small buffer of text to match against. Basically I want to find if the text in the buffer is in the dictionary (thus valid). If it is in the dictionary I also
want to execute a similar named routine. So if "stop" is detected a separate routine labeled "stop:" in the program will be executed.
example:
.dseg
.org 0x100 test_txt .byte 12 ;Word to be checked can be 12 bytes long
.org 0x200
dictionary .db "stop"
.db "start"
.db "reset"
.db "shout"
.db "laugh"
.db "HELP!"
......
stop: rjmp stop......
start: rjmp start.....
Any thought or hints would be GREATLY appreciated