Skip to content

Commit

Permalink
Merge pull request #5 from DerRobert-28/dev
Browse files Browse the repository at this point in the history
update gitignore and readme
  • Loading branch information
DerRobert-28 authored Nov 8, 2023
2 parents 1337516 + 57ebdcc commit 0da7d72
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.b*
/progs/
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,24 @@ The calling syntax is as follows: ```bfasm <sourceFile>```
\
**Important:** Do not provide a file extension, because the assembler assumes source files having ".bfa" and byte code file having ".bfc".
\
\
The Brainfuck Assembler knows the following pseudo-commands:

- "**;**": comment line
- "**.mode &lt;*mode*&gt;**": config one of the display modes:
- "**ascii**" / "**byte**": input and output characters
- "**digit**" / "**number**": input and output numbers
- "**console**" / "**text**": input and output text
- "**graphic**(**s**)" / "**video**": input and output pixels
- "**.ascii**": shortcut for "**.mode ascii**"
- "**.byte**": shortcut for "**.mode byte**"
- "**.console**": shortcut for "**.mode console**"
- "**.digit**": shortcut for "**.mode digit**"
- "**.graphic**": shortcut for "**.mode graphic**"
- "**.graphics**": shortcut for "**.mode graphics**"
- "**.text**": shortcut for "**.mode text**"
- "**.video**": shortcut for "**.mode video**"

\
The Brainfuck Assembler knows the following commands:

Expand Down

0 comments on commit 0da7d72

Please sign in to comment.