TweetFollow Us on Twitter

MacNosy
Volume Number:2
Issue Number:3
Column Tag:Programmer's Forum

MacNosy Gets a Facelift

By Steve Jasik, Jasik Designs, Menlo Park, CA

MacWorkStation News

Apple announced the availability of MacworkStation in the January developer newsletter in a small article. I think that this is what Scully has been talking about in some of his recent speeches when he mentions the Mac as a workstation. The only problem with the MacworkStation [a software program] is that instead of making it a public domain standard, Apple is licensing the source code for $1500 to "interested" parties. My present feeling is that it would do more for Mac sales to sell the source code for a nominal fee then to license it.

MacworkStation is a host based applications environment that enables host computer software to control the Macintosh user interface on a Macintosh. The idea behind the MacworkStation is that it's a way of writing applications on a host so it can utilize the graphic interface of the Macintosh. Just think, soon we will be able to log on to MAUG or Delphi and instead of emulating a teletype or a VT 100, we will have menus and windows, etc.

MacworkStation consists of two parts, a protocol definition and a first implementation of that protocol. The protocol defines commands which are sent to the Macintosh, telling it what to do (put up a dialog box, etc). Events are defined to pass back to the host what is happening on the Macintosh. Note that much of what happens on the Mac need not be sent back to the host. The other part is a Macintosh Application that implements the protocol definition on a Macintosh. It is a generalized Macintosh application that is capable of being driven by an external process (the host). Unlike terminal emulation, the MacworkStation allows the host full access to the windows, pull down menus, dialogs, and other features of the Macintosh user interface.

I hope this gives you enough information to whet your appetite. Just think of putting the Mac user interface on your favorite mainframe application. You will have to modifiy the mainframe end of it to send the appropiate commands to the Mac. But it might just make life pleasant for us grunts out there in hackerdom.

For More information contact Apple Software licensing at (408) 973-4667 or write a letter to Scully requesting that MacworkStation be made a public standard.

New MacNosy Version 2

Over the past year MacNosy has helped many programmers learn about the Macintosh OS, and the workings of other Mac programs. Meeting some of my users at trade shows has been fun for me. Many of their suggestions have been incorporated in Version 2 [denoted as V2] of MacNosy.

The reasons for V2 of Nosy are the introduction of the 128K ROM's, and the addition of features such as the context sensative symbol substitution discussed below. This was what I started with. By the time I was finsihed coding, the mini editor has been substantially extended to include displays of procedures by double clicking on a procedure name, and the ability to interactively create seperate, mergable comment files had been added.

Nosy Does Windows!

The introduction of the Mac user interface makes Nosy much easier to use. The illustration in figure 1 shows the procedure "browser" window partially obscured by the display of a procedure. The Display menu allows one to bring up windows containing the listing of a procedure, the references to any symbol, the complete reference list of system symbols referenced, the complete reference list of trapnames referenced, the listing of all the strings in the program, the list of code blocks in the program, etc.

Fig. 1 Windows supported

Note that Nosy now lists the formal parameter list with the listing of a trap call, and for I/O calls, it knows that the register A0 holds the address of the parameter block, so in between the defination of A0 and the trap call it substitutes names of the structure variables. For a procedure that creates a stack frame with a "LINK A6" instruction, references of the form -d(A6) are to local variables, and are named "vxx_n", and those of the form d(A6) are the parameters "param1", "param2",... , and if it is a function, the function result is called "funRslt".

Other additions to the Window mode of Nosy are displays of information in its internal tables. They include a list of the structure names known to Nosy, lists of trapnames and their parameter lists, the names and values of the system global symbols, and a file listing most of constant definations for field values (event mask values and such).

Fig. 2 Symbols Displayed

New ROM Secrets

I have had a set of the new ROM's for a few weeks, and in addition to getting Nosy to disassemble them, I have made a few observations about the code in it. About 30K is devoted to resources, and to find out what they are use the "Rsrc map" list in window mode (Chicago font, WDEF0, etc). Other facts of interest are the methods used to speedup BlockMove and the QuickDraw routines. The code in Blockmove is unrolled, that is the loop body has been replicated a number of times to cut down on the number of increment and test instructions. The reason for this is that the 68000 used in the Mac is "bus limited", and anything one can do to cut down the number of instructions executed in a loop will speed it up.

Consider the loop:

    for i := 1 to 20 do a[i] := b[i]; 

by rewriting it as:

   for i := 1 to 20 by 2 do begin
      a[i] := b[i];     a[i+1] := b[i+1]
  end;

We eliminate the execution time associated with 10 increment and test instructions at the cost of extra space by duplicating the assignment statement.

Another interesting tidbit about the new ROM's are that they contain some 68020 instructions. Yes, Nosy knows about the 68020 instructions, and the FPU (68881) co-processor instructions. The new ROM's have been setup to run on a variety of machines as evidenced by some of the new EQU's.

Last November I made a "ROM comments" version of Nosy available along with a comments file that Nosy read in and merged with the disassembly listings it produces. In V2 I have extended this capability so any file can be commented, and provided a way that one can interactively create the comment files in window mode. Another little goodie that was added in conjunction with the comment mode was to "annotate" MOVEQ xx,D0 instructions with a comment of the form "; err = name" if Nosy's symbol dictionary contained an error number for the value.

Copy De-protection Techniques

Another use of Nosy is the location of copy protection code. To prefix this discussion, note that during manufacture (disk duplication), the duplicator writes the disk in a non-standard way by including non-standard data or address markers, or some other devious device so as to make the disk difficult to copy. During the execution of the program it checks the disk for the existance of this "mark", and if it finds it procedes normally. This checking code is usually refered to as copy protection code.

Fortunately for us the program itself cannot be "marked", for if it were, the segment loader could not read it, so Nosy can read the file in, and if the copy protection code can be found, and eliminated, the program is still usable. A number of the facilities in Nosy are useful in the location of copy protection code. The reference maps, lists of the resources ("please insert master disk"), the "Strings" display, the Search Mark command, and the conVert address command. The Search Mark command searchs for references of the form "$D5 ....." which are used to setup the Sony drivers for non-standard reads. If the procedure that references that data area contains references to any of the disk driver variables, then Nosy displays the message "ahoy matey, x marks the spot (base of the copy protection code)", and lists the chain of procedures that call it. One can then inspect the chain of procedures to find a suitable place to patch the code.

Trying to keep up with the changing copy protection methods is a never ending game, as evidenced by the frequent updates to Copy-To-Mac. I have sharpened some of the checks in Nosy so that it doesn't blow up or follow incorrect paths during the treewalk. This was done after I checked out some games, and found that they were putting garbage in the "CODE 0" segment.

More coming...

Other additions to V2 are the support of Desk accessories in Window mode, and the support of Switcher in all modes. Nosy is a continually evolving program to which I have been and will be adding bug fixs and new features. The current version of Nosy may be downloaded from my SIG on Delphi by those who have purchased it. At this time I am not sure what future directions Nosy will take, but some of the things under consideration are:

- to add features to the window mode so as to make it easier to use

- to make it into a debugger

- to add a symbolic simulation of the register contents along with some more flow analysis so it handles languages with register based calling sequences better, and produces a more informative reference map (knows the difference between Loads and Stores).

[MacNosy version 2 is available through the MacTutor store for $85. -Ed]

Fig. 3 "TREF Wind"

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.