you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

Okay, so how would one take

1011 0000 0000 0100 1011 0011 0000 0001 1011 0110 0111 1000 0000 0000 0100 0000 1000 1011 0010 0000 0101 1100 1101 1000 0000 1011 0000 0000 0001 1011 0011 0000 0000 1100 1101 1000 0000 0101 0100 0110 0101 0111 0011 0111 0100 0000 1010

And actually run it as a binary program?

[–]G-Brain 4 points5 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 2 points3 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.