From d5624c8f8b3e450bb4ccb7497d43ced183a660f4 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 11 Apr 2012 10:28:09 -0500 Subject: apparently this needs a .md extension? --- README | 24 ------------------------ README.md | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 24 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index cd10657..0000000 --- a/README +++ /dev/null @@ -1,24 +0,0 @@ -# DCPU-16 Emulator and Assembler # - -Based on the specification [here](http://0x10c.com/doc/dcpu-16.txt). - -Includes an extra instruction HLT which stops execution of the current program -(otherwise it will run forever unless you tell it to only execute a certain -number of operations). - -## Emulator ## - -`perl -Ilib bin/dcpu16-execute [--iterations ] [--dump ] ` - -Executes a DCPU-16 binary file. Runs until a HLT instruction is seen, unless -`--iterations` is specified, in which case it runs for that many clock cycles. -Produces a memory and register dump at the end in the file `./dcpu16.dump` (or -whatever file you specify with the `--dump` option). - -## Assembler ## - -`perl -Ilib bin/dcpu16-asm [--output ] ` - -Creates a DCPU-16 binary from an assembler file. Assembler syntax is so far -limited to the examples that are given in the specification. Output is written -to `./a.out`, or whatever filename is given in the `--output` option. diff --git a/README.md b/README.md new file mode 100644 index 0000000..cd10657 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# DCPU-16 Emulator and Assembler # + +Based on the specification [here](http://0x10c.com/doc/dcpu-16.txt). + +Includes an extra instruction HLT which stops execution of the current program +(otherwise it will run forever unless you tell it to only execute a certain +number of operations). + +## Emulator ## + +`perl -Ilib bin/dcpu16-execute [--iterations ] [--dump ] ` + +Executes a DCPU-16 binary file. Runs until a HLT instruction is seen, unless +`--iterations` is specified, in which case it runs for that many clock cycles. +Produces a memory and register dump at the end in the file `./dcpu16.dump` (or +whatever file you specify with the `--dump` option). + +## Assembler ## + +`perl -Ilib bin/dcpu16-asm [--output ] ` + +Creates a DCPU-16 binary from an assembler file. Assembler syntax is so far +limited to the examples that are given in the specification. Output is written +to `./a.out`, or whatever filename is given in the `--output` option. -- cgit v1.2.3-54-g00ecf