Swift's Three Laws of Simplicity
Note: The goal of WIZ is to find the simplest, smallest, most elegant circuit possible,
that implements an efficient and scalable microprocessor.
It is to answer the question, "What is the *essence* of a computer?"
This is a pure research project, not a commercial venture with a profit motive.
If you follow these Laws, you will not make any money! At least not for a while, until you perfect the product!

These laws are written for me. They are "notes to self". I invite you to read over my shoulder.

Law 1. Simplicity is the overriding consideration.
Never allow any change in the direction of complexity.

1a. Find systemic changes not incremental changes.
1b. Never push the edges.
1c. Moore's Law is your friend.
Law 2: Always search for more simplicity. PERSIST!
2a. Believe in fundamental truths. Have faith that they can be found. You can do it.
            (See page 3 here for the best description of what the WIZ is all about!)
2b. The more you have to explain it, the more you probably have it wrong.
2c. If questioning whether to include it or not, the answer is: NOT.
2d. If debating between several possibilities, there may be a higher principle you are missing.
Law 3: Do it in software, not in hardware!
Warning: once a feature is added, it will be almost impossible to ever take away. "Legacy" is a dirty word.

3a. Do it in hardware only if there is no other way to do it
3b. Keep all WIZ complexity on the backend, never mess with the frontend

Back to Index