Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ which can be run on any of the many DCPU emulators to see that A is set to the c
What are the issues?
--------------------

1. Very ineffecient
1. Very inefficient

Currently there are many useless register swaps. For example, the Z -> Y -> X swap that is very common could be removed entirely.

Expand All @@ -83,7 +83,7 @@ A program is a set of functions. A function consists of a type name, an identifi

A type name is one of the following strings: "int", "void". Any other type name is invalid.

An identifier is any string consisting entireley of alphanumeric characters and underscores not starting with a digit.
An identifier is any string consisting entirely of alphanumeric characters and underscores not starting with a digit.

An argument list is a set of Type-Identifier pairs seperated with commas, enclosed with parenthesis:
`(int foo, int bar)`. Only the following types are allowed: "int".
Expand Down