summaryrefslogtreecommitdiff
path: root/support/lgrind/example/asm2tex.bat
blob: b89f223bab46b13cd8498350cc9ada2011073fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
rem convert .asm (Microsoft assembler) to .lg 
if not exist %1.asm goto Complain

lgrind -i -lmasm %1.asm > %1.lg
echo Created %1.lg
goto Done

:Complain
echo '%1.asm' does not exist.

:Done