I want to type a couple of 1's and 0's into notepad, save as something.exe, and get a program. Obviously, it will not be very complex. Even just saying hi would work. How do I output text? How do I pause it so it doesn't close immediately? Is there a resource anybody has where it says all this?
closed as not constructive by H2CO3, mah, Charles, Michael Petrotta, animuson Mar 31 '12 at 6:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I think you would have a better experience if you used a text editor, typed either binary (ones and zeros) or hex into a text file then write a small program that reads that ascii file and saves it as the binary bits or bytes you intended. Basically making a machine code assembler. You should specify the processor and operating system you are interested in before taking this further. You not only have to know the opcodes/machine code for the instruction set but need to know the binary file formats for the operating system (coff, elf, exe, etc) and would need to hand code all of that information (much better suited to have your machine code assembler create that header for you if needed). As an example take http://github.com/dwelch67/lsasim an educational instruction set with simulator and tools that I created. The "binary file format" is an ascii file with the machine code in readable hex. The simulator reads that and executes it, and if desired (which is how I tested it at first), you can hand code the machine code instead of assembly language. I dont have an operating system, etc, the parser that reads the machine code file turns it into a buffer of binary ones and zeros, which is the simulated memory for the processor. In the old days of dos and windows the debug command line program made this kind of thing easy, hand code either assembly or machine code bytes, and when you save you can easily save to a .com executable file. I am certain I am not the only one that learned x86 assembly language using debug as I couldnt afford to buy software tools like masm, and didnt have a modem to get whatever the popular free assembler was asm86 or some such thing (until years later when I could afford one of those). if debug is still part of the windows command line you can probably still do this today with that tool. |
|||
|
|
|
You would need to first identify a specific processor it would run on, and also an environment (raw CPU, some operating system, something else). From the environment you would need to determine the correct binary format. From the CPU you would need to determine the actual machine language. There are several other things you would need to determine as well. Your question may as well be "where does life come from?" -- yes, it can be answered, but not with any useful result through a simple Q&A forum. If you want to pursue this further, you might consider taking a course (or just reading a book) in Computer Organization, concentrating on the assembly language details. From there, it's not a far stretch to learn to convert your assembly into machine code (though there will still be quite a bit to learn). |
|||||||||||
|
1's and0's. You should look into assembly programming: en.wikipedia.org/wiki/Assembly_language – Bjørne Malmanger Mar 16 '12 at 20:17