|
发表于 2005-4-8 17:18:46
|
显示全部楼层
[quote:530df39ab7="wk1989"]looks good!
but how do I use the file? Do I need to install?
also, mind sharing the source code? Because I want to learn a bit of assembly language.[/quote]
there is no source for assembler.
Machine code is the binary data executed by the CPU.
Assembler is the human-readable representation of the instructions, eg:
MOV R14,R12
This is directly interchangable with the machine code, so for any given combination of instruction and parameters, there is a binary pattern which is understood by the CPU.
This is also reversible, so if there is a binary pattern which is a valid instruciton, it can be turned back into assembler. It is a 1:1 relationship. Assembler is human-readable machine code.
If you want to read the assembly instructions for this game, you will need software to do it. The source and the executable are the same thing here. |
|