repo.or.cz
/
cl-x86-asm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tidying up tests. Adding fixes for use from another package.
[cl-x86-asm.git]
/
package.lisp
blob
d23c3528cca796bef0b5d85027379a6137982997
1
2
(
in-package
:
cl-user
)
3
4
(
defpackage
:
cl-x86-asm
5
(:
use
:
cl
)
6
(:
nicknames
:
x86-asm
)
7
(:
export
8
:
make-instruction-hashtable
9
:
assemble-form
10
:
assemble-forms
11
:
make-segment
12
:
assemble-forms
13
:
print-segment
))
14
15
(
in-package
:
cl-x86-asm
)