diff options
Diffstat (limited to 'notes.lisp')
-rw-r--r-- | notes.lisp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/notes.lisp b/notes.lisp new file mode 100644 index 0000000..5ea7ef4 --- /dev/null +++ b/notes.lisp @@ -0,0 +1,24 @@ +;;;;; -*- mode: common-lisp -*- + +;; Addressing Mode Symbols +'(immediate + absolute + zero-page + implied + indirect-absolute + absolute-indexed-x + absolute-indexed-y + zero-page-indexed-x + zero-page-indexed-y + indexed-indirect + indirect-indexed + relative + accumulator) + +;; Applying a syntax rule defined +;; in *addressing-modes-syntax* +(funcall + (eval + (cadar + *addressing-modes-syntax*)) + "arg") |