Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an executable file without a compiler

I came across an article a long while ago on how to write out a .com file directly without using any external tools. The method was to basically copy con myfile.com and then hit ctrl+alt+number for each instruction.

I've lost the url for the guide... Google isn't helping much either.

If you have the link, please could you post it.

like image 835
Alterlife Avatar asked Jan 22 '23 12:01

Alterlife


2 Answers

You don't need an article for it; what you've described is the entire tail end of the process. Just make sure you use the keypad numbers and not the toprow numbers.

For the beginning, you'll need to hand-assemble the program. Unless you're into pain I recommend you find yourself an actual assembler or compiler instead.

like image 123
Ignacio Vazquez-Abrams Avatar answered Jan 31 '23 18:01

Ignacio Vazquez-Abrams


Insipred by Ignacio Vazquez-Abrams I found this link, which uses ECHO in stead of COPY CON.

like image 42
Jeroen Wiert Pluimers Avatar answered Jan 31 '23 19:01

Jeroen Wiert Pluimers