Tidying up tests. Adding fixes for use from another package.
[cl-x86-asm.git] / asm-directives.lisp
blob808424b19f593a5ecc3dd11ac479c50638aa05ee
2 (in-package :cl-x86-asm)
4 (defparameter *asm-directives*
5 (list
6 (cons :DB
7 (list (function (lambda (argument) (byte-p argument)))))
8 (cons :DW
9 (list (function (lambda (argument) (word-p argument)))))
10 (cons :DD
11 (list (function (lambda (argument) (dword-p argument)))))
12 (cons :DQ
13 (list (function (lambda (argument) (qword-p argument)))))
14 (cons :DS
15 (list (function (lambda (argument) (stringp argument))))
18 (defun directive-db (argument) )
19 (defun directive-dw (argument) )
20 (defun directive-dd (argument) )
21 (defun directive-dq (argument) )