Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10 UW 5/3/83; site uw-beaver Path: utzoo!watmath!clyde!burl!ulysses!mhuxj!houxm!vax135!cornell!uw-beaver!info-mac From: info-mac@uw-beaver (info-mac) Newsgroups: fa.info-mac Subject: using MacDB (2 screen debugger) with SUMacC Message-ID: <2021@uw-beaver> Date: Wed, 24-Oct-84 16:51:08 EDT Article-I.D.: uw-beave.2021 Posted: Wed Oct 24 16:51:08 1984 Date-Received: Fri, 26-Oct-84 02:46:09 EDT Sender: daemon@uw-beave Organization: U of Washington Computer Science Lines: 13 From: Bill Croft Here's a shell file to create a 'b.map' from 'b.out'. 'b.map' is then downloaded (macput -u b.map) to your disk containing MacDB and read in with the 'symbols/open' menu item. #!/bin/sh # macdbmap - create b.map from b.out for use by "MacDB, vers 8/3/84" # nm68 -nh b.out | sed -e ' s/ _\(.*\)$/ \1_/ s/^\([^ ]*\) \([^ ]*\) \([^ ]*\)$/ \3=1:\1/ s/:0*/:/ s/:$/:0/' > b.map