mirror of
https://github.com/RPCSX/xbyak.git
synced 2024-12-12 05:15:50 +00:00
8 lines
114 B
Batchfile
8 lines
114 B
Batchfile
@echo off
|
|
echo nasm
|
|
nasm -l a.lst -f win64 test.asm
|
|
cat a.lst
|
|
echo yasm
|
|
yasm -l b.lst -f win64 test.asm
|
|
cat b.lst
|