diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-20 16:05:53 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-20 16:06:45 -0700 |
commit | 3fa78f1c16714cf39e388757a046ed4e010ef2b9 (patch) | |
tree | 5bd80607b019fd0c7a90bc4bf6db8203a14d4e85 /subx | |
parent | dd82456646695f61750e0e49626c49fd7af6aecb (diff) | |
download | mu-3fa78f1c16714cf39e388757a046ed4e010ef2b9.tar.gz |
4375
Diffstat (limited to 'subx')
-rw-r--r-- | subx/001help.cc | 39 | ||||
-rw-r--r-- | subx/011parse.cc | 15 |
2 files changed, 34 insertions, 20 deletions
diff --git a/subx/001help.cc b/subx/001help.cc index c2b0390e..e6e0527d 100644 --- a/subx/001help.cc +++ b/subx/001help.cc @@ -5,15 +5,7 @@ if (argc <= 1 || is_equal(argv[1], "--help")) { //: this is the functionality later layers will provide // currently no automated tests for commandline arg parsing - cerr << "Usage:\n" - << " subx test\n" - << " subx --help\n" - << " subx run <ELF binary>\n" - << " subx translate <input 'source' file> <output ELF binary>\n" - << "\n" - << "To start learning how to write SubX programs, run:\n" - << " subx help\n" - ; + cerr << get(Help, "usage"); return 0; } @@ -38,7 +30,7 @@ if (is_equal(argv[1], "help")) { :(code) void help_contents() { cerr << "Available top-level topics:\n"; - cerr << " syntax\n"; + cerr << " usage\n"; // End Help Contents } @@ -48,16 +40,23 @@ map<string, string> Help; init_help(); :(code) void init_help() { - put(Help, "syntax", - "SubX programs consist of segments, each segment in turn consisting of lines.\n" - "Line-endings are significant; each line should contain a single instruction, macro or directive.\n" - "Comments start with the '#' character. It should be at the start of a word (start of line, or following a space).\n" - "Each segment starts with a header line: a '--' delimiter followed by the starting address for the segment.\n" - "The starting address for a segment has some finicky requirements. But just start with a round number, and `subx` will try to guide you to the right answer.\n" - "A good default is to try to start the first segment at the default address of 0x08048000, and to start subsequent segments at least 0x1000 (most common page size) bytes after.\n" - "If a segment occupies than 0x1000 bytes you'll need to push subsequent segments further down.\n" - "Currently only the first segment contains executable code (because it gets annoying to have to change addresses in later segments every time an earlier one changes length; one of those finicky requirements).\n" - "Programming in machine code can be annoying, but let's see if we can make it nice enough to be able to write a compiler in it.\n" + put(Help, "usage", + "Welcome to SubX, a better way to program in machine code.\n" + "SubX uses a subset of x86 machine code. SubX programs should run without modification on Linux computers.\n" + "It provides a better experience and better error messages than programming directly in machine code, but you have to stick to the instructions it supports.\n" + "\n" + "== Ways to invoke subx\n" + "- Run tests:\n" + " subx test\n" + "- See this message:\n" + " subx --help\n" + "- Convert a textual SubX program into a standard ELF binary that you can run on your computer:\n" + " subx translate <input 'source' file> <output ELF binary>\n" + "- Run a SubX binary using SubX itself (for better error messages):\n" + " subx run <ELF binary>\n" + "\n" + "To start learning how to write SubX programs, run:\n" + " subx help\n" ); // End Help Texts } diff --git a/subx/011parse.cc b/subx/011parse.cc index 0b0d4f66..b5914d2c 100644 --- a/subx/011parse.cc +++ b/subx/011parse.cc @@ -1,5 +1,20 @@ //: Loading programs into the VM. +:(before "End Help Texts") +put(Help, "syntax", + "SubX programs consist of segments, each segment in turn consisting of lines.\n" + "Line-endings are significant; each line should contain a single instruction, macro or directive.\n" + "Comments start with the '#' character. It should be at the start of a word (start of line, or following a space).\n" + "Each segment starts with a header line: a '--' delimiter followed by the starting address for the segment.\n" + "The starting address for a segment has some finicky requirements. But just start with a round number, and `subx` will try to guide you to the right answer.\n" + "A good default is to try to start the first segment at the default address of 0x08048000, and to start subsequent segments at least 0x1000 (most common page size) bytes after.\n" + "If a segment occupies than 0x1000 bytes you'll need to push subsequent segments further down.\n" + "Currently only the first segment contains executable code (because it gets annoying to have to change addresses in later segments every time an earlier one changes length; one of those finicky requirements).\n" + "Programming in machine code can be annoying, but let's see if we can make it nice enough to be able to write a compiler in it.\n" +); +:(before "End Help Contents") +cerr << " syntax\n"; + :(scenario add_imm32_to_eax) # At the lowest level, SubX programs are a series of hex bytes, each # (variable-length) instruction on one line. |