First,
Determine exactly what this code does or is intended to do.
Re-write that application in a language that you do know-
Berkeley BASIC comes to mind
-since you say you don't want to use K&H.
Second,
Assemble your new code. -
THEN
With a good Hex editor such as MASM or TASM or the like,
Compare your new asmbly code with this older asmbly code
Do While:
Continue to revise your high(er) level language subrt'n
UNTIL: your new ASM code matches the old ASM code.
At this point you'll have
(1) An app which creates this piece of code,
(2) An app that you can read ! and modify ! for future changes.
(3) Some good tools in-which to work with,
and
(4) Some good knowledge of ...well,
of a lot of things ...
like - what to stay away from the next time.
Shift-Stop
Hi have one querery regarding writing in machine code,
address- instruction
00000 001 10000
00001 010 10000
00010 100 10000
00011 110 10001
00100 111 00000
10000 000 00001
10001 000 11111
i dont know how to write a program in machine code, which adds up to the numbers stored in cell 11000 11001, 11010 and stores the sum in cell 11011.
any help would be much appreciated angela