TweetFollow Us on Twitter

May 91 Mousehole
Volume Number:7
Issue Number:5
Column Tag:Mousehole Report

Mac to Vax Problems

By Larry Nedry, Mousehole BBS

From: Hweiss

Re: Object code debugging

There have been occasions where I need to debug an application outside of the THINK C environment. I decided to teach myself how to do object code debugging with TMON and Knaster’s book on the subject. I managed to find a THINK C port of the Pascal source used in Knaster’s Showoff example. The resulting application duplicates the same bugs as the Pascal version, however, due to the differences in the object code generated by the two different compilers and the fact that I am using a IIci (not a Mac Plus which generates an address error instead of a bus error when you double-dereference a Nil handle), I am having a great deal of difficulty following the text as the author explains the process of debugging with TMON. Would anyone have any suggestions how I can overcome these obstacles? Thanks.

From: Btoback

Re: Object code debugging

This might not be a terribly constructive suggestion, but use Jasik’s Debugger rather than TMON. It’s a combined source/object debugger that is a lot easier to use than TMON. It does work with Think C. The only disadvantage is that it’s about twice the price of TMON. It’s worth the difference. Because it’s a combined debugger, you can easily figure out which source statements generated which object code.

From: Gator

Re: >32K data items

I’m having a problem with an array to hold an image of greater than 32k in length. I am aware of the problems with global and static data larger than 32k and am using a call to NewPtr to allocate the required memory.

However when I view my image it seems that all data beyond 32k is either corrupted or absent. Downsizing my image to less than 32k takes care of the problem. The following is a fragment of my code:

main()
{
    unsigned char *Image;
    Image = NewPtr( myImageSize );

I’d appreciate any info on what to look out for. Thanks.

From: Sysop

Re: >32K data items

What compiler are you using?

I you are using a signed short for indexing into the array then that would explain why you can’t access the rest of the array.

From: Mrteague

Re: >32K data items

Also make sure the argument you pass to NewPtr is a LONG - you might want to verify that you have more than 32K allocated by doing a Heap Dump in MacsBug. If not, the garbage could be coming from anything in memory, following your memory block.

From: Ray

Re: PICTS in dialog boxes

I am using PICTS as logos and/or visual aids in alerts and dialog boxes. I put them in as PICT resources using ResEdit 2.1, then include them in the DITL. I’ve noticed that when the dialog/alert comes up, it takes a long time (2-3 seconds) to display the PICT. You can see it being painted on the screen. This is with a Mac IIcx, which should be no slouch in the screen painting department. The PICTS originated in MacDraw. Could this be the problem? Should these be bit-mapped graphics instead? I’d like to have the whole dialog including the PICT flash up on the screen “instantaneously”.

From: Dave

Re: PICTS in dialog boxes

The usual way to handle this is to draw the dialog contents into an offscreen buffer and then blit the contents to the screen. You *could* use bitmap picts, but do you want to pay the storage overhead?

From: Kim

Re: Mac to Vax...burp!

To whom they think they know...:

We have been having a real problem with PostScript text files that have been generated in Mac applications by holding ‘COMMAND-K’, while clicking on the “Print” button in the printing dialog of most Mac apps. Using v6.0 of the Laserwriter driver and (at least) System 6.02, we get standard Mac text files that we then try to upload to a Vax using a Kermit transfer Protocol in White Knight. If the transfer is binary, we have no problem... but for ‘text’ transfers the transfer is never completed, bailing out at about 33,000 characters. After looking in the PS text file, I have found that the LaseWriter driver inserts 2 instances of “<LF>eexec<LF>”, or, ‘eexec’ flanked by 2 Linefeed characters ($0A). What gives?

I don’t know much about VMS, or the various file-types available under the same OS, but it appears that the Vax chokes on Mac text files.

Several PC’s that perform the same transfer with WordPerfect PS files all have no problems, either with the transfer or with printing. The Mac files, even though we can get them transferred, can’t print to a Laser- Writer under VMS !!!! I think I might have to write a conversion utility that I can execute in White Knight as an RCMD...at least this seems preferable to buying DEC’s PathWorks S/W, and a Mac, and listening to everything that DEC and Apple tell us. Maybe I have to learn more about VMS/file types/text-files.

Has anybody else done this, and if so, what results did they get? Did they have the same problems, and most importantly, how did they get around them? This one’s really got me(and apparently Apple) stumped.

This week I’m going to send Apple our stuff (S/W, scripts, VMS Kermit), so they can load it on their VAX to try and better define (resolve..) the problem.

It should be said that up here, in Canada, Apple has been most attentive to our problem, as has FreeSoft, the makers of White Knight. I’ll try and get back on this board later on in the week.

From: Mward

Re: Mac to Vax...burp!

Kermit attempts to perform whatever conversions are needed in order to make files passed in text mode readable on the various machines it is hosted on. Mac files use a carriage return to signify end-of-line. I’m not sure what VMS uses. MS-DOS uses carriage return/line feed. I have found that you really have to experiment with Kermit to find the best transfer mode for any given purpose.

I have not had any luck printing Mac generated Postscript file either on a Vax or on a Sun. My guess is that the Laser Prep routines are needed in the Laserwriter to print these files. If only someone would provide these in a downloadable form, or provide a Vax download program...

From: Kim

Re: Mac to Vax...burp!

If you look at about byte position 32333, you find several linefeed characters imbedded in the Laser Prep header. Actually, “<LF>exec<LF>”, I think. This seems to be where the transfer stops in Kermit. The Vax side sends an error message “Kermit’s internal buffers are full”, and the transfer just stops. But as you say, the most maddening part is that the Mac PS files won’t print on the Vax’ed LaserWriter!

I think I’m going to try and write a small utility to convert the “Mac’d” PS files into the exact Vax equivalent, i.e., convert “char-char-<CR>” lines on Mac to “<#of chars>char-char-...-<LF>” on the Vax...if this is my understanding of Vax ‘text’ files, which I think they (VMS) call ‘stream_LF’. The funny thing is that I can’t get anybody who KNOWS exactly what is going on in VAXland either. Perhaps one of the translators in the print daemon, or maybe something the print ‘queue’ does? Anyway, the good thing is that I’ve had to learn a little about VMS and DCL (yeuch!!!)

From: Mward

Re: MAC TO DOS FILE CONVERSION.

There’s an application called PICTure This that will translate many types of PC graphics to PICT format. You will have to translate the graphics in a different step, of course.

From: Steinman

Re: GWorld Help

I’m trying to write a program that presents an animated sequence of images that have been pre-loaded from a disk file. Does anybody know of any GWorld example code that sets up multiple GWorlds, each sharing the same GDevice and CLUT?

Thanks in advance,

Dr. Scott Steinman,

University of Missouri-St. Louis,

School of Optometry

From: Inbox

Re: ImageWriterII programming

I think this belongs more in this section than in hardware, so here goes...

The three-page escape code listing in the back of the IM2 manual says the following about printing stuff as bit image graphics:

(a sequence follows)

Print next nnnn bytes as bit image graphics

ESCAPE G nnnn 27 71 dddd (comment) nnnn = #

of bytes.

----

Q: How, in what format, must I send the “nnnn”? Do they mean that 4 bytes must be sent the values thereof somehow combined will determine the size of the bitmap to be sent? Should bytes the values of which are digits be sent? Should the ASCII values of digits be sent?

----

I think I’ve tried all of these, and nothing seems to work properly. I mean, the damn thing would print, but it expects some huge byte #, for it doesn’t recognize other control sequences I’ve got at the end of the bitmap. HELP!

From: Don

Re: irregular windows

I am looking for some examples for showing how to make irregular shaped windows in Think C 4.0. Also how to work with regions. Can anyone out there help me.

From: Dave

Re: irregular windows

You should be looking for code for a WDEF resource. I know there is some out there.

From: Stet

Re: InterNet

I recently downloaded some Mac files to my Internet account. Now I would like to use my modem to remote login and then transfer the Mac Files from my Internet account to my Macintosh. I can remote login fine but I haven’t been able to transfer the files. Can anyone help?

From: Mrteague

Re: InterNet

Assuming that you can remote login into your InterNet account, and can see the files you downloaded when you do a ‘ls’, then you should be able to get the files without too much problem, if your site is any good.

What you need is a comms program on the non-Mac side - for example most UN*X based machines will have a ‘xmodem’ utility, and the better machines will have zmodem in the form of the ‘rz’ and ‘sz’ utilities.

Try typing any of these commands and see what you get - most have help facilities. If all that fails, then with any luck (especially if your non-Mac machine is a VAX running VMS) there will be at least a Kermit file transfer implementation - it is a bit trickier to use, and it’s name be differ from machine to machine. Then are always conversion programs (like mget and mput etc) that are usually designed to be used with a FTP connection.

Anyway, if you manage to send a file from the non-Mac end, type the command in first, then have your Mac comms program start the receive (if it doesn’t autostart). Once you have the file, you will probably find that it is ‘BinHex’ format. Use something like StuffIt (any flavor) to convert the file to the appropriate Mac file.

If you still have problems after reading this msg, leave me a msg telling me what machines are involved, what operating systems etc, and I will see what I can do to help.

Hope this helps.

From: Stet

Re: InterNet

Thanks a million! Kermit did the trick. Unfortunately we don’t have access to any xmodem or zmodem utilities. (It seemed that kermit ran a little slowly.) I am going to work on that though.

I just wanted to drop you a line and thank you for your time.

From: Willcox

Re: On Location

I just purchased On Location for use in searching through the source code of my Think Pascal projects. However, On Location is not able to index the text in a Think Pascal file saved in the “non-text” format.

Does anyone have an XTND file written for this type of file (Type = QPED, Creator = PJMM)?

From: Johnbaro

Re: video slot

Does anybody know how to find out what slot the video card(s) is/are in? I need to have a slot number to be able to sync with the vertical retrace. Thanks in advance.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
Top 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 »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »
Explore some of BBCs' most iconic s...
Despite your personal opinion on the BBC at a managerial level, it is undeniable that it has overseen some fantastic British shows in the past, and now thanks to a partnership with Roblox, players will be able to interact with some of these... | Read more »
Play Together teams up with Sanrio to br...
I was quite surprised to learn that the massive social network game Play Together had never collaborated with the globally popular Sanrio IP, it seems like the perfect team. Well, this glaring omission has now been rectified, as that instantly... | Read more »
Dark and Darker Mobile gets a new teaser...
Bluehole Studio and KRAFTON have released a new teaser trailer for their upcoming loot extravaganza Dark and Darker Mobile. Alongside this look into the underside of treasure hunting, we have received a few pieces of information about gameplay... | Read more »

Price Scanner via MacPrices.net

14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more
Sunday Sale: 13-inch M3 MacBook Air for $999,...
Several Apple retailers have the new 13″ MacBook Air with an M3 CPU in stock and on sale today for only $999 in Midnight. These are the lowest prices currently available for new 13″ M3 MacBook Airs... Read more
Multiple Apple retailers are offering 13-inch...
Several Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices... Read more
Roundup of Verizon’s April Apple iPhone Promo...
Verizon is offering a number of iPhone deals for the month of April. Switch, and open a new of service, and you can qualify for a free iPhone 15 or heavy monthly discounts on other models: – 128GB... Read more
B&H has 16-inch MacBook Pros on sale for...
Apple 16″ MacBook Pros with M3 Pro and M3 Max CPUs are in stock and on sale today for $200-$300 off MSRP at B&H Photo. Their prices are among the lowest currently available for these models. B... Read more
Updated Mac Desktop Price Trackers
Our Apple award-winning Mac desktop price trackers are the best place to look for the lowest prices and latest sales on all the latest computers. Scan our price trackers for the latest information on... Read more
9th-generation iPads on sale for $80 off MSRP...
Best Buy has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80 off MSRP on their online store for a limited time. Prices start at only $249. Sale prices for online orders only, in-store prices... Read more
15-inch M3 MacBook Airs on sale for $100 off...
Best Buy has Apple 15″ MacBook Airs with M3 CPUs on sale for $100 off MSRP on their online store. Prices valid for online orders only, in-store prices may vary. Order online and choose free shipping... Read more

Jobs Board

Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Mar 22, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Retail Assistant Manager- *Apple* Blossom Ma...
Retail Assistant Manager- APPLE BLOSSOM MALL Brand: Bath & Body Works Location: Winchester, VA, US Location Type: On-site Job ID: 04225 Job Area: Store: Management Read more
Housekeeper, *Apple* Valley Village - Cassi...
Apple Valley Village Health Care Center, a senior care campus, is hiring a Part-Time Housekeeper to join our team! We will train you for this position! In this role, Read more
Sonographer - *Apple* Hill Imaging Center -...
Sonographer - Apple Hill Imaging Center - Evenings Location: York Hospital, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now See Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.