mirror of
https://github.com/marketideas/qasm.git
synced 2025-08-05 10:25:10 +00:00
clean up/add to .gitignore
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -10,3 +10,7 @@ Finder.Data
|
|||||||
|
|
||||||
*.xcuserstate
|
*.xcuserstate
|
||||||
*.xcbkptlist
|
*.xcbkptlist
|
||||||
|
**/log_qasm
|
||||||
|
.vscode/compile_commands.json
|
||||||
|
.vscode/settings.json
|
||||||
|
|
||||||
|
18
single.sh
Executable file
18
single.sh
Executable file
@@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
FNAME=2007-labels-and-symbols
|
||||||
|
if [ "$1""L" != "L" ] ; then
|
||||||
|
FNAME=$1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp testdata/$FNAME.S /tmp
|
||||||
|
|
||||||
|
cd /tmp
|
||||||
|
OUTNAME=compare.txt
|
||||||
|
merlin32 -V ${FNAME}.S >/dev/null
|
||||||
|
cat ${FNAME}_Output.txt >OUTNAME
|
||||||
|
|
||||||
|
qasm ${FNAME}.S -t merlin32 -i M65816 -o 0/${FNAME}.S.bin
|
||||||
|
qasm ${FNAME}.S -t qasm -i M65816 -o 0/${FNAME}.S_q.bin
|
||||||
|
|
||||||
|
vbindiff ${FNAME} ${FNAME}.S.bin
|
Reference in New Issue
Block a user