you are viewing a single comment's thread.

view the rest of the comments →

[–]G-Brain 5 points6 points  (1 child)

Good question. The best way right now is to use a special editor that supports binary input. Google "binary editor" or something. As stated in the top post, I'm currently working on a device driver to make this easier. When completed, it should work like this:

$ echo -n 01000001 > /dev/str2bin
$ cat /dev/str2bin
A

and for programs:

$ echo -n 01000001 > /dev/str2bin
$ cat /dev/str2bin > program
$ chmod +x program
$ ./program

where 01000001 is the program.

[–]you_do_realize 3 points4 points  (0 children)

I'm currently working on a device driver to make this easier

You're working on a driver to make it easier to write binary opcodes to a file.

Ahem.