Merge pull request #11 from cbeust/create-lst

Fix the binary symbols and generate a .lst file
This commit is contained in:
Zellyn Hunter 2020-09-21 14:38:21 -04:00 committed by GitHub
commit d1088b4260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3269 additions and 5 deletions

View File

@ -57,3 +57,5 @@ adding tests here and features there.
- [Zellyn Hunter](https://github.com/zellyn)
- [Peter Ferrie ("qkumba")](https://github.com/peterferrie)
- [Cedric Beust](https://github.com/cbeust)

3262
audit/audit.lst Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,10 +3,10 @@
!zone auxmem {
.MEM_1 = %00
.MEM_2 = %01
.MEM_3 = %10
.MEM_4 = %11
.MEM_1 = %00000000
.MEM_2 = %00000001
.MEM_3 = %00000010
.MEM_4 = %00000011
.MEM_2_1_1_1 = (.MEM_2 << 0) + (.MEM_1 << 2) + (.MEM_1 << 4) + (.MEM_1 << 6)
.MEM_3_2_2_2 = (.MEM_3 << 0) + (.MEM_2 << 2) + (.MEM_2 << 4) + (.MEM_2 << 6)

View File

@ -4,7 +4,7 @@ export ACME="$HOME/gh/acme/ACME_Lib"
if [[ "${SKIP-}" == "" ]]
then
acme audit.asm
acme -r audit.lst audit.asm
else
acme -DSKIP=1 audit.asm
fi