During 1999, I completed a Microcontroller course. LA51 was written so that I could compile A51 programs within the comforts of my Linux environment. It's not perfect, but it has served me well..
LA51 is very simple: It will convert an A51 assembly language program:
start_address = 8000h
org start_address
start:
mov p1,#0ffh
loop:
mov c,090h
cpl c
mov 0f8h,c
mov c,093h
mov 0fbh,c
ljmp loop
end
into Intel HEX:
:0F8000007590FFA290B392F8A29392FB028003B7
:00000001FF