Add TomeViewer

This commit is contained in:
Elliot Nunn 2019-06-17 10:57:32 +08:00
parent ec73f8601c
commit 37e088533a
3 changed files with 23357 additions and 0 deletions

1
Apps/TomeViewer.idump Normal file
View File

@ -0,0 +1 @@
APPLtmvr

23353
Apps/TomeViewer.rdump Normal file

File diff suppressed because it is too large Load Diff

3
Build
View File

@ -71,6 +71,7 @@ args.add_argument('src', metavar='SOURCES', action='store', help='Source tree')
args.add_argument('-e', dest='emu', metavar='VMAC', action='store', default=None, help='path to emulator')
group = args.add_mutually_exclusive_group()
group.add_argument('--resedit', action='store_true', help='placeholder')
group.add_argument('--tomeviewer', action='store_true', help='placeholder')
group.add_argument('-c', dest='mpwcmd', metavar='CMD', action='store', default=None, help='MPW Shell command line')
args.add_argument('-v', dest='verbose', action='store_true', help='verbose')
args = args.parse_args()
@ -262,6 +263,8 @@ if args.mpwcmd is not None:
startapp = 'Disk:MPW:MPW Shell'
elif args.resedit:
startapp = 'Disk:System Folder:Apple Menu Items:ResEdit'
elif args.tomeviewer:
startapp = 'Disk:System Folder:Apple Menu Items:TomeViewer'
else:
startapp = None