Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rebeccargb/intercal-alu
INTERCAL ALU
https://github.com/rebeccargb/intercal-alu
Last synced: about 20 hours ago
JSON representation
INTERCAL ALU
- Host: GitHub
- URL: https://github.com/rebeccargb/intercal-alu
- Owner: RebeccaRGB
- License: apache-2.0
- Created: 2024-07-17T03:50:55.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-06T10:27:55.000Z (9 days ago)
- Last Synced: 2024-11-06T11:32:10.244Z (9 days ago)
- Language: Python
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](../../workflows/gds/badge.svg) ![](../../workflows/docs/badge.svg) ![](../../workflows/test/badge.svg) ![](../../workflows/fpga/badge.svg)
# INTERCAL ALU
## How it works
As an educational project, it is inevitable that Tiny Tapeout would attract various pedagogical examples of common logic circuits, such as ALUs. While ALUs for common operations such as addition, subtraction, and binary bitwise logic are surprisingly common, it is much rarer to encounter one that can calculate the five operations of the INTERCAL programming language. Due to either the cost-prohibitive nature of Warmenhovian logic gates or general lack of interest, such a feat has never been performed until now. With chip production finally within reach of the average person, all it takes is one person who has more dollars than sense to design the fabled INTERCAL ALU (Arrhythmic Logic Unit).
The pin assignments for this design are roughly as follows. The /OE (output enable) and /WE (write enable) signals are active low, so should be set HIGH by default.
| # | Dedicated Input | Dedicated Output | Bidirectional I/O |
| - | ------------------- | ---------------- | -------------------------- |
| 0 | A0 (address) | D0 (output only) | D0 (input and output only) |
| 1 | A1 (address) | D1 (output only) | D1 (input and output only) |
| 2 | S0 (selector) | D2 (output only) | D2 (input and output only) |
| 3 | S1 (selector) | D3 (output only) | D3 (input and output only) |
| 4 | S2 (selector) | D4 (output only) | D4 (input and output only) |
| 5 | S3 (selector) | D5 (output only) | D5 (input and output only) |
| 6 | /OE (output enable) | D6 (output only) | D6 (input and output only) |
| 7 | /WE (write enable) | D7 (output only) | D7 (input and output only) |This ALU has two 32-bit registers, B and A (in no particular order). (These may also be thought of as four 16-bit registers, AL, AH, BL, and BH.) To write a byte to a register, set A0 and A1 to the byte address, set S0 LOW for the A register or HIGH for the B register, set S1 through S3 LOW, set the bidirectional I/O pins to the byte value, set /WE LOW, then set /WE HIGH again. (Do not set S1 through S3 HIGH when writing, or else something unpredictable will happen, most likely nothing.)
To read a register or result, set A0 and A1 to the byte address, set S0 through S3 to the desired operation, set /OE LOW, read the byte value from the bidirectional I/O pins, then set /OE HIGH. Results can also be read from the dedicated outputs; the dedicated outputs are not affected by the /OE signal, as they do not need to care about your feelings.
The operations supported are listed below. An attempt was made to make it understandable.
![](docs/intercal-alu.svg)
Operations 0 and 1 simply return the current value of the A or B register, respectively. This corresponds with the values of S0 through S3 used in write mode. This is not unintentional. This might also explain why S1 through S3 must be LOW in write mode.
Operations 2 through 7 correspond to INTERCAL's unary AND, unary OR, and unary XOR operators, represented by ampersand (&), book (V), and what (?), respectively. From the INTERCAL manual:
These operators perform their respective logical operations on all pairs of adjacent bits, the result from the first and last bits going into the first bit of the result. The effect is that of rotating the operand one place to the right and ANDing, ORing, or XORing with its initial value. Thus,#&77
(binary = 1001101) is binary 0000000000000100 = 4,#V77
is binary 1000000001101111 = 32879, and#?77
is binary 1000000001101011 = 32875.Operations 2, 4, and 6 work on the 16-bit halves of the A register independently, while operations 3, 5, and 7 work on the 32-bit whole of the A register.
Operations 8 and 9 correspond to INTERCAL's *interleave* (also called *mingle*) operator, represented by big money ($). From the INTERCAL manual:
The interleave operator takes two 16-bit values and produces a 32-bit result by alternating the bits of the operands. Thus,#65535$#0
has the 32-bit binary form 101010....10 or 2863311530 decimal, while#0$#65535
= 0101....01 binary = 1431655765 decimal, and#255$#255
is equivalent to#65535
.Operation 8 returns the interleave of the lower halves of A and B, while operation 9 returns the interleave of the upper halves of A and B. (Should the chip fabrication process allow for it, operation 8½ will, of course, return the interleave of the middle halves of A and B.)
Operations 10 and 11 correspond to INTERCAL's *select* operator, represented by sqiggle (~). From the INTERCAL manual:
The select operator takes from the first operand whichever bits correspond to 1's in the second operand, and packs these bits to the right in the result. Both operands are automatically padded on the left with zeros. […] For example,#179~#201
(binary value 10110011~11001001) selects from the first argument the 8th, 7th, 4th, and 1st from last bits, namely, 1001, which = 9. But#201~#179
selects from binary 11001001 the 8th, 6th, 5th, 2nd, and 1st from last bits, giving 10001 = 17.#179~#179
has the value 31, while#201~#201
has the value 15.To help understand the select operator, the INTERCAL manual also provides a helpful [circuitous diagram](https://www.muppetlabs.com/~breadbox/intercal-man/figure1.html).
Use of operations 12 and above is not recommended, unless undefined behavior is required.
## How to test
The following example calculations found in the INTERCAL manual should be particularly illuminating.
| S | A | B | F |
| --------------- | ----- | ----- | ---------- |
| `MINGLE16L` (8) | 0 | 256 | 65536 |
| `MINGLE16L` (8) | 65535 | 0 | 2863311530 |
| `MINGLE16L` (8) | 0 | 65535 | 1431655765 |
| `MINGLE16L` (8) | 255 | 255 | 65535 |
| `SELECT16` (10) | 51 | 21 | 5 * |
| `SELECT16` (10) | 179 | 201 | 9 |
| `SELECT16` (10) | 201 | 179 | 17 |
| `SELECT16` (10) | 179 | 179 | 31 |
| `SELECT16` (10) | 201 | 201 | 15 |
| `AND16` (2) | 77 | | 4 |
| `OR16` (4) | 77 | | 32879 |
| `XOR16` (6) | 77 | | 32875 |These test cases are included in the (unfortunately Python and not INTERCAL) `test.py` file. As these are likely more INTERCAL operations than any sensible person will ever perform, they should be sufficient for testing purposes. However, for curiosity's sake, an extensive set of additional test cases have also been included.
\* Not found in the INTERCAL manual.
## External hardware
The ALU may be used without external hardware, although seeing the output values may present a challenge. Instead, it is recommended to use a microcontroller of some sort to drive the inputs and read the outputs, as microcontrollers are designed to do. The implementation of the rest of the INTERCAL language is left as an exercise for the reader.
## Further reading
[The INTERCAL Programming Language Revised Reference Manual](https://www.muppetlabs.com/~breadbox/intercal-man/home.html) by Donald R. Woods and James M. Lyon with revisions by Louis Howell and Eric S. Raymond (can recommend highly enough)
## What is Tiny Tapeout?
Tiny Tapeout is an educational project that aims to make it easier and cheaper than ever to get your digital and analog designs manufactured on a real chip, for better or for worse.
To learn more and get started, visit https://tinytapeout.com.
## Resources
- [FAQ](https://tinytapeout.com/faq/)
- [Digital design lessons](https://tinytapeout.com/digital_design/)
- [Learn how semiconductors work](https://tinytapeout.com/siliwiz/)
- [Join the community](https://tinytapeout.com/discord)
- [Build your design locally](https://www.tinytapeout.com/guides/local-hardening/)## What next?
- [Submit your design to the next shuttle](https://app.tinytapeout.com/).
- Edit [this README](README.md) and explain your design, how it works, and how to test it.
- Share your project on your social network of choice:
- LinkedIn [#tinytapeout](https://www.linkedin.com/search/results/content/?keywords=%23tinytapeout) [@TinyTapeout](https://www.linkedin.com/company/100708654/)
- Mastodon [#tinytapeout](https://chaos.social/tags/tinytapeout) [@matthewvenn](https://chaos.social/@matthewvenn)
- X (formerly Twitter) [#tinytapeout](https://twitter.com/hashtag/tinytapeout) [@tinytapeout](https://twitter.com/tinytapeout)