TweetFollow Us on Twitter

Feb 90 Mousehole
Volume Number:6
Issue Number:2
Column Tag:Mousehole Report

SE/II Emulator

By Larry Nedry, Contributing Editor

From: Skaros

Re: Emulate an SE or a II?

Well, now that the 68030 seems to be becoming the standard cpu for the Mac what happens to all the software written for the other machines(Plus,SE,II) that won’t run on a 68030 machine. Well, if you paid buck$ then chances are your software is being upgraded and you can always buy the next version that is MacIIx compatible etc. But, isn’t there someone out there who knows how to write an emulator that would run on a CX and let you use all your favorite software that so far only works on a II or SE, for example, Dark Castle, Arkanoid, or Continuum. If SoftPC can write an app that lets you have an IBM XT equivalent in a window, what do I have to do to write something that lets me use my old programs. What do I have to patch to make it work. After all, the 68030 is a 16 MHz machine; an 8 MHz emulator should be a cinch. Although I’ve written a few small apps for myself, I don’t know enough about the Mac to do this. I’ve a hunch it’s even underneath knowing the toolbox--busses,wait states, and a whole lot of other stuff that I have little experience with. Can anyone shed a little light on the matter?

From: Frankh

Re: Emulate an SE or a II?

A probable source of incompatibility is the screen. Many old Mac games wrote directly to the screen, bypassing the Toolbox. Other headache sources may be software timing loops, and code that depends on certain hardware features of the older machines. I guess that with some work, you could set aside some ram to simulate the screen buffer and then send it to a video card, or intercept all calls to what used to be the screen buffer address. You could make all these patches, and sho’nuff, you’ll end up with a fast B&W Mac 512 (or 128K!) clone running on a CX.

Or...you can call up the companies in question and ask them when they’re coming out with a version that works on the newer machines.

From: Skaros

Re: Emulate an SE or a II?

You’re probably right because when I make the SE30 the main screen the game, oids, doesn’t run, but when the Rasterops driven Apple monitor is the main screen it runs in a half baked way - only using the upper half of the screen for the game. I can only get oids to do this when I’ve booted from sys4.2 When I’ve booted from 6.03, the game is “smart” enough to tell me it can only run on a II or an SE. I wonder what screen specific changes exist between the two Systems?

From: Apage

Re: Emulate an SE or a II

Some applications use self modifying code in order to boost performance. When the II first came out with the 68020 it causes problems with the instruction cache. When the code was modified the modified instruction was already in the cache and so the modification that was expected to take place wasn’t there and thus many programs bombed. The 68030 also has a data cache, so the problems with self modifying programs now reach deeper. There is an assembly language instruction (MOVECR (move to control register)) in the 020/030 instruction set. Use this to turn off the caches and see if that gets your programs running.

From: Skaros

Re: Emulate an SE or a II

Well I tried turning off the cache with a great Init called cache control by J.Hamilton. It doesn’t work. BUT, I got it to work using system 4.2!! But when I run the program it only uses half a screen at a time and then runs using the upper half of the screen. Interestingly this is a 256 color game named oids and I’m using a rasterops card with an Apple color monitor hooked to an SE30. The program doesn’t run when I make the Mac the main screen. Probably has to do with the way the game addresses the screen buffer. But, why should it be smart enough to say it can’t run when I’ve booted with sys6.03 but it goes ahead and runs crazy when I’ve booted with sys 4.2?

From: Frankh

Re: CRC code

I’m looking for a fast CRC generator (in Pascal, preferably). I translated some C code, but it was not all that fast...Any code (C or assembly would be OK too) would be appreciated.

From: Larry Nedry

Re: CRC code

Don’t use a CRC generator. Use a lookup table. MUCH FASTER!

There is a very good book on serial communications called “C Programmers Guide to Serial Communications” by Joe Cambell. It has everything you’ve every wanted to know about CRC’s.

From: Infosyn

Re: OOP, Think Pascal

Is there anyone else out there writing OOP stuff with Think Pascal? Have you also run into the problem of a method not being in memory when you call it? Symantec says the manual warns that it’s up to the programmer to make sure the requisite segment has been loaded, so I’ve been loading ‘em all at launch time. But with 300K of CODE in 36 units in 12 segments, it hurts! Anybody figured out a better way?

From: Chenette

Re: OOP, Think Pascal

I’ve had trouble with dangling or missing handles causing the method not found error. Are you trying to dereference any nil handles?

From: Infosyn

Re: OOP, Think Pascal

I wish it were that easy. Unfortunately this is a serious design flaw in Think Pascal. Normally all globally referenced routines have addresses in the application’s jump table, so the Segment Manager “automatically” ensures that the respective segment is in memory before you call it. But with a method, there’s no such guarantee. And LSP does not have any internal way to keep track of which segment each method is in, so it’s currently entirely up to the programmer to make sure that the correct segments are in memory. (At least that’s the way Symantec describes it.)

But there are evidently other factors at work here, and I was hoping someone had discovered an easy work-around. For example, “sometimes” you can avoid the address error crash by moving the *declaration (not the definition) of the method to a different segment. This part is unclear to me (as you can tell.) Symantec is fully aware of the situation and is almost willing to say they are working on it, I guess. I was hoping someone else knew the straight scoop on this.

From: Siegel

Re: OOP, Think Pascal

The important thing to remember is that the object declaration must be in a segment which is loaded and which stays loaded. The best segment for this purpose is the main segment.

It’s OK to have object declarations in one file and method bodies in another; in fact, it’s much more flexible that way.

From: Siegel

Re: OOP, Think Pascal

By way of clearing up some confusion, let me explain:

The problem you describe is more a drawback of the object pascal architecture than it is a bug in THINK Pascal. In every program, ALL globally referenced routines do have entries in the jump table, but methods are a special case; they’re referenced by means of a class info proc, which is generated when a class of object is declared. In this sense, they’re not globally referenced, which explains why (for example) you can’t take the address of a method as a callback for a Toolbox routine.

The Class Info Proc needs to be in a segment which is initially loaded, and which stays in one place while those methods are used. The best way to ensure this is to have the class declarations in a file which is kept in the main segment, and have the class’s method bodies in another unit which can be placed in any segment; there’s no need for the method bodies themselves to be loaded, only the class declaration.

It is up to the programmer to ensure that the class declaration’s segment is in memory, and the simplest way to do so is to place the class declarations in the main segment, which is never unloaded and which is loaded at launch time.

Rich Siegel, Symantec.

From: Walrus

Re: REAL PROGRAMMERS materialFrom: Fling

Re: Getting APPL’s WDID

Does anybody know a fast, simple method of obtaining the application’s working directory ID. I need to open a companion help file, which should be located in the same directory as the launched application.

From: Mrteague

Re: Getting APPL’s WDID

It’s quite simple - do a GetVol call when you start the application - it will return you the volume name, and the volume refNum, which will be a WDRefNum when you are in a directory (which is set before the Launch trap when launching the application).

From: Siegel

Re: Getting APPL’s WDID

The cheapest way to do this is to open your associated file using a value of 0 as the “vRefNum”, since that specifies the default. The PMSP will then look in the same folder as the application, and if that fails, it’ll look in the system folder.

From: Mrteague

Re: Getting APPL’s WDID

I would add one warning to that method - if you do anything that changes the default directory (like maybe after a SFGetFile/SFPutFile call), then a vRefNum of 0 will give you the *current* default directory, which may *NOT* be the same one that the application originally started with, in case the distinction is important (like Config files etc).

From: Zweig

Re: Think C 4.0 DA Class

Does anyone know where I can find a desk accessory class for Think C 4.0. It looks like they want to support it since there’s an OOPS.A4 library, but I don’t see any clean way to override the menu bartender class or the swictchboard class to handle the DA events. If anyone knows someone who’s done it, please let me know. Thanks.

From: Siegel

Re: Think C 4.0 DA Class

The TCL was not intended for writing DA’s; Code Resources, drivers, and DA’s can be written using Object C, but you’ll pretty much have to roll your own classes.

From: Jumpcut

Re: TCL & List manager?

On the slim chance that somebody may have done my work for me, I was wondering if anyone has a class for a list window under TCL, i.e. a subclass of CDirector and/or CWindow that handles one-column lists. I don’t want to use CDocument, as there is no file connected with this list in any normal manner. Has anybody done this, and would like my eternal thanks and gratitude or do I have to dig in and learn this stuff? Does anyone, in fact, use the Think Class Library other than me? Are there organizations to help us rehabilitate?

From: Apage

Re: TCL & List manager?

I’m working on a subclass of CPane that might be able to help. It would enable you not only to specify objects in the list, and have them returned as objects upon selections, but by use of a superclass I’m defining with it you can alter the behavior of each list item by overriding some default methods. For instance, in the case of a directory in a list of files it would open as soon as you selected it, or appear in a different color to separate it from file entries. However, be advised that I am not looking to give this code away free.

From: Jumpcut

Re: TCL & List manager?

Thanks, but I got my CListPane working. Or nearly working. It creates a list, but it has problems resizing it (it only resizes properly about half the time). I just buckled down and really learned the darn class library. Now it feels great knowing how the thing works, but what really stinks is that I have dreams about it. THAT’s scary. What so you tell your friends? “All my dreams lately have been object-oriented.” They just think I’ve been cloistered with my Mac for too long now...

Another TCL thing: the printing methods work, but only when I set the partition to about 800K. Otherwise I get a “Mac OS error ID -108” which is out of memory. Any ideas? I would like this app to run on any Mac.

From: Jumpcut

Re: PICT resources in dialogs

I use pretty PICTs in my dialog boxes with no problems. I can’t remember if I had to send to the front or back, but I know that they are the highest number in the DITL (whether that’s front or back, I can’t remember.) All of the other items, buttons, editText, etc. are lower numbers. And it works fine for me.

Try making the PICT the highest number. Related note: Adobe Typeface Manager will intercept the drawing of your PICTs if they’re not just bitmaps, like if you created them in MacDraw, so it can really screw up whatever meticulous arrangement you may have spent hours working on in ResEdit. Some days it doesn’t pay to be a perfectionist.

From: Wesm

Re: Compiling MacApp & Error 405

I’m having a hard time with the Pascal compiler with MPW. I just purchased MacApp, and haven’t been able to successfully compile any of the sample programs. Invariably, the compiler aborts with error 405, “Error opening include file”. The file it chokes on is typically {PInterfaces}Types.p or Quickdraw.p. The shell variables seem to be set up correctly. Does anyone out there in MacAppLand know what’s going wrong?

From: Maniac

Re: Compiling MacApp & Error 405

I had a problem w/ MacApp that I solved by increasing the memory for MPW to 2meg. I made a copy of MPW first in another folder w/ the ‘essential’ files and then increased its size. That way, I can run the default or the big memory version as needed. --Mark

From: Dhands

Re: MacApp and Commands

I can’t subclass any of the commands defined in the file UMacApp.TApplication.p (i.e. TNewDocCommand). I get a compile time error that TNewDocCommand is undefined. The unit USES UMacApp and has no trouble finding other standard MacApp commands. How can I include in my unit the commands defined in UMacApp.TApplication.p?

From: Rastamon

Re: MacApp and Commands

The reason you can’t OVERRIDE commands such as TNewDocCommand, is that those objects are defined in the IMPLEMENTATION section of the code (ie.UMacApp.TApplication.p), rather than in the INTERFACE section (ie. UMacapp.p).

You really don’t need to OVERRIDE these commands, though. What you should *really* do is OVERRIDE the method(s) that gets called by the DoIt method of the command you are interested in. In the case of TNewDocCommand, you can just OVERRIDE TApplication.OpenNew.

From: Spud

Re: BigCursor?

Remember the BigCursor program -- the one that doubled the size of the cursor? Well, it doesn’t seem to work on the Mac II. Does anybody out there in ModemLand know why it wouldn’t work on newer machines (remember, it was released in 1984), and maybe offer a suggestion as to how I could update the program to work with new CPU’s and/or color cursors?

From: Spud

Re: BigCursor?

It doesn’t matter. It bombs in color and B&W. You might say it does not discriminate on the basis of color... Y’know, I even asked Apple’s Developer Tech Sport department, and even THEY didn’t know how to enlarge the cursor! It can’t be THAT hard of a hack, can it???

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Posterino 4.4 - Create posters, collages...
Posterino offers enhanced customization and flexibility including a variety of new, stylish templates featuring grids of identical or odd-sized image boxes. You can customize the size and shape of... Read more
Chromium 119.0.6044.0 - Fast and stable...
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. List of changes available here. Version for Apple... Read more
Spotify 1.2.21.1104 - Stream music, crea...
Spotify is a streaming music service that gives you on-demand access to millions of songs. Whether you like driving rock, silky R&B, or grandiose classical music, Spotify's massive catalogue puts... Read more
Tor Browser 12.5.5 - Anonymize Web brows...
Using Tor Browser you can protect yourself against tracking, surveillance, and censorship. Tor was originally designed, implemented, and deployed as a third-generation onion-routing project of the U.... Read more
Malwarebytes 4.21.9.5141 - Adware remova...
Malwarebytes (was AdwareMedic) helps you get your Mac experience back. Malwarebytes scans for and removes code that degrades system performance or attacks your system. Making your Mac once again your... Read more
TinkerTool 9.5 - Expanded preference set...
TinkerTool is an application that gives you access to additional preference settings Apple has built into Mac OS X. This allows to activate hidden features in the operating system and in some of the... Read more
Paragon NTFS 15.11.839 - Provides full r...
Paragon NTFS breaks down the barriers between Windows and macOS. Paragon NTFS effectively solves the communication problems between the Mac system and NTFS. Write, edit, copy, move, delete files on... Read more
Apple Safari 17 - Apple's Web brows...
Apple Safari is Apple's web browser that comes bundled with the most recent macOS. Safari is faster and more energy efficient than other browsers, so sites are more responsive and your notebook... Read more
Firefox 118.0 - Fast, safe Web browser.
Firefox offers a fast, safe Web browsing experience. Browse quickly, securely, and effortlessly. With its industry-leading features, Firefox is the choice of Web development professionals and casual... Read more
ClamXAV 3.6.1 - Virus checker based on C...
ClamXAV is a popular virus checker for OS X. Time to take control ClamXAV keeps threats at bay and puts you firmly in charge of your Mac’s security. Scan a specific file or your entire hard drive.... Read more

Latest Forum Discussions

See All

‘Monster Hunter Now’ October Events Incl...
Niantic and Capcom have just announced this month’s plans for the real world hunting action RPG Monster Hunter Now (Free) for iOS and Android. If you’ve not played it yet, read my launch week review of it here. | Read more »
Listener Emails and the iPhone 15! – The...
In this week’s episode of The TouchArcade Show we finally get to a backlog of emails that have been hanging out in our inbox for, oh, about a month or so. We love getting emails as they always lead to interesting discussion about a variety of topics... | Read more »
TouchArcade Game of the Week: ‘Cypher 00...
This doesn’t happen too often, but occasionally there will be an Apple Arcade game that I adore so much I just have to pick it as the Game of the Week. Well, here we are, and Cypher 007 is one of those games. The big key point here is that Cypher... | Read more »
SwitchArcade Round-Up: ‘EA Sports FC 24’...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for September 29th, 2023. In today’s article, we’ve got a ton of news to go over. Just a lot going on today, I suppose. After that, there are quite a few new releases to look at... | Read more »
‘Storyteller’ Mobile Review – Perfect fo...
I first played Daniel Benmergui’s Storyteller (Free) through its Nintendo Switch and Steam releases. Read my original review of it here. Since then, a lot of friends who played the game enjoyed it, but thought it was overpriced given the short... | Read more »
An Interview with the Legendary Yu Suzuk...
One of the cool things about my job is that every once in a while, I get to talk to the people behind the games. It’s always a pleasure. Well, today we have a really special one for you, dear friends. Mr. Yu Suzuki of Ys Net, the force behind such... | Read more »
New ‘Marvel Snap’ Update Has Balance Adj...
As we wait for the information on the new season to drop, we shall have to content ourselves with looking at the latest update to Marvel Snap (Free). It’s just a balance update, but it makes some very big changes that combined with the arrival of... | Read more »
‘Honkai Star Rail’ Version 1.4 Update Re...
At Sony’s recently-aired presentation, HoYoverse announced the Honkai Star Rail (Free) PS5 release date. Most people speculated that the next major update would arrive alongside the PS5 release. | Read more »
‘Omniheroes’ Major Update “Tide’s Cadenc...
What secrets do the depths of the sea hold? Omniheroes is revealing the mysteries of the deep with its latest “Tide’s Cadence" update, where you can look forward to scoring a free Valkyrie and limited skin among other login rewards like the 2nd... | Read more »
Recruit yourself some run-and-gun royalt...
It is always nice to see the return of a series that has lost a bit of its global staying power, and thanks to Lilith Games' latest collaboration, Warpath will be playing host the the run-and-gun legend that is Metal Slug 3. [Read more] | Read more »

Price Scanner via MacPrices.net

Clearance M1 Max Mac Studio available today a...
Apple has clearance M1 Max Mac Studios available in their Certified Refurbished store for $270 off original MSRP. Each Mac Studio comes with Apple’s one-year warranty, and shipping is free: – Mac... Read more
Apple continues to offer 24-inch iMacs for up...
Apple has a full range of 24-inch M1 iMacs available today in their Certified Refurbished store. Models are available starting at only $1099 and range up to $260 off original MSRP. Each iMac is in... Read more
Final weekend for Apple’s 2023 Back to School...
This is the final weekend for Apple’s Back to School Promotion 2023. It remains active until Monday, October 2nd. Education customers receive a free $150 Apple Gift Card with the purchase of a new... Read more
Apple drops prices on refurbished 13-inch M2...
Apple has dropped prices on standard-configuration 13″ M2 MacBook Pros, Certified Refurbished, to as low as $1099 and ranging up to $230 off MSRP. These are the cheapest 13″ M2 MacBook Pros for sale... Read more
14-inch M2 Max MacBook Pro on sale for $300 o...
B&H Photo has the Space Gray 14″ 30-Core GPU M2 Max MacBook Pro in stock and on sale today for $2799 including free 1-2 day shipping. Their price is $300 off Apple’s MSRP, and it’s the lowest... Read more
Apple is now selling Certified Refurbished M2...
Apple has added a full line of standard-configuration M2 Max and M2 Ultra Mac Studios available in their Certified Refurbished section starting at only $1699 and ranging up to $600 off MSRP. Each Mac... Read more
New sale: 13-inch M2 MacBook Airs starting at...
B&H Photo has 13″ MacBook Airs with M2 CPUs in stock today and on sale for $200 off Apple’s MSRP with prices available starting at only $899. Free 1-2 day delivery is available to most US... Read more
Apple has all 15-inch M2 MacBook Airs in stoc...
Apple has Certified Refurbished 15″ M2 MacBook Airs in stock today starting at only $1099 and ranging up to $230 off MSRP. These are the cheapest M2-powered 15″ MacBook Airs for sale today at Apple.... Read more
In stock: Clearance M1 Ultra Mac Studios for...
Apple has clearance M1 Ultra Mac Studios available in their Certified Refurbished store for $540 off original MSRP. Each Mac Studio comes with Apple’s one-year warranty, and shipping is free: – Mac... Read more
Back on sale: Apple’s M2 Mac minis for $100 o...
B&H Photo has Apple’s M2-powered Mac minis back in stock and on sale today for $100 off MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $100 –... Read more

Jobs Board

Licensed Dental Hygienist - *Apple* River -...
Park Dental Apple River in Somerset, WI is seeking a compassionate, professional Dental Hygienist to join our team-oriented practice. COMPETITIVE PAY AND SIGN-ON Read more
Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Sep 30, 2023 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
*Apple* / Mac Administrator - JAMF - Amentum...
Amentum is seeking an ** Apple / Mac Administrator - JAMF** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Child Care Teacher - Glenda Drive/ *Apple* V...
Child Care Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.