projects:archevo:isa
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:archevo:isa [2021/04/20 02:57] – Owen Mellema | projects:archevo:isa [2021/04/21 00:03] (current) – [ISAs in ArchEvo] Owen Mellema | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== What is an ISA? ===== | ===== What is an ISA? ===== | ||
- | An //ISA//, short for Instruction Set Architecture, | + | An //ISA//, short for Instruction Set Architecture, |
===== Brittleness ===== | ===== Brittleness ===== | ||
- | ISAs that are practically used are generally // | + | ISAs that are practically used are generally // |
Brittleness is caused by two main factors. | Brittleness is caused by two main factors. | ||
Line 74: | Line 74: | ||
==== IPLOC ==== | ==== IPLOC ==== | ||
- | One problem with | + | In order for cells to be able to observe other cells' registers, they must be able to manipulate an offset to that cell. We can limit this to the eight adjacent squares around a cell to make this easier. |
+ | The naïve approach would be to store each offset as a number in a register. There are two problems with this. Firstly, interpreting the register as an unsigned int, the possible range for observation becomes a square of size 256 around the cell. This is not what we want. Secondly, this requires two registers, which is not ideal. | ||
+ | |||
+ | The IPLOC (**I**nspection **P**ointer **LOC**ation) convention circumvents this by encoding each of the eight offsets as a bit in a single register. The actual offset is the most significant bit in the register. | ||
+ | |||
+ | < | ||
+ | 1xxxxxxx => ( 1, 1) | ||
+ | 01xxxxxx => ( 0, 1) | ||
+ | 001xxxxx => (-1, 1) | ||
+ | 0001xxxx => ( 1, 0) | ||
+ | 00001xxx => (-1, 0) | ||
+ | 000001xx => ( 1, -1) | ||
+ | 0000001x => ( 0, -1) | ||
+ | 00000001 => (-1, -1) | ||
+ | 00000000 => ( 0, 0) | ||
+ | </ | ||
+ | |||
+ | ===== ISAs in ArchEvo ===== | ||
+ | The following is a list of the ISAs in ArchEvo: | ||
+ | * [[projects: |
projects/archevo/isa.1618887430.txt.gz · Last modified: 2021/04/20 02:57 by Owen Mellema