Add files via upload

This commit is contained in:
TimothyLottes
2016-11-09 19:29:18 -05:00
committed by GitHub
parent 72d24fffc7
commit 46e125adf8
2 changed files with 20 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<html><head><link rel="stylesheet" href="style.css"></head><body><div class="page">
<h1>20160704 - Relative Addressing With XOR - Removing an Adder</h1>
<br>
Could be an interesting compromise: use XOR instead of ADD for relative addressing to remove an adder. Specifically,
<br>
<br>
<tt>Address = AddressRegister XOR Immediate</tt>
<br>
<br>
Forces the programmer to keep address register on some power of two alignment.
With caches and/or parallel access to banked memory, this would be a bad.
But likely fine for a core with a private memory, and code written in assembly.
</div></body></html>