~ubuntu-branches/ubuntu/oneiric/lgrind/oneiric

« back to all changes in this revision

Viewing changes to example/asm2tex.bat

  • Committer: Bazaar Package Importer
  • Author(s): Michael Piefel
  • Date: 2002-01-28 11:16:34 UTC
  • Revision ID: james.westby@ubuntu.com-20020128111634-gx07d7rqveysbcc1
Tags: upstream-3.67
ImportĀ upstreamĀ versionĀ 3.67

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
rem convert .asm (Microsoft assembler) to .lg 
 
3
if not exist %1.asm goto Complain
 
4
 
 
5
lgrind -i -lmasm %1.asm > %1.lg
 
6
echo Created %1.lg
 
7
goto Done
 
8
 
 
9
:Complain
 
10
echo '%1.asm' does not exist.
 
11
 
 
12
:Done
 
13
 
 
14