TweetFollow Us on Twitter

Blanking
Volume Number:2
Issue Number:2
Column Tag:Basic School

Asm Utility Speeds Screen Blanking

By Dave Kelly, Engineer, General Dynamics, MacTutor Editorial Board

For those that remember Professor Mac's Screen Pokes presented in the April 1985 issue of MacTutor, we discussed the Macintosh screen and how to poke the screen to all blank. The method presented there was very slow. Until such time as someone comes out with a MS BASIC compiler most routines will be slow. MacTutor now has a call out to anyone that has a complier for MS BASIC to step forward and become famous. Please contact us if you have any information to give us about compiled BASIC.

This month we will provide the alternative screen poke method using a library written in 68000 code. These routines were designed to work with the 512K or 128K versions of the Macintosh, however, the code may be modified to be used with other memory sizes.

If you are unfamiliar with BASIC libraries then we recommend that you refer to the BASIC School article in the November 1985 MacTutor on Building a Machine Language Library routine. (Back issues are available). The listings that follow are assembled in the same manner as discussed in that column.

There are three code routines that you need to be concerned with. The LIBinit.asm (Listing 1) routine may be found on page 44 of the Nov. 85 MacTutor. The second routine stores $FFFFFFFF in all screen locations, thus blacking out the entire screen. The third routine inverts all of the screen locations. We thank Serge Rostan of Pontoise, France for contributing the main code for the invert routine.[If you have some good ideas on Basic, please write Dave care of MacTutor and see them in print. -Ed]

The BlankScreen routine (Listing 2) is accessed by the statement: CALL BlankScreen (memory%) where memory% is the memory of your particular system (i. e. use memory%=512 or memory%=128). This routine works fine for 512K or 128K Macs, but you will have to change the equates for Screen512 and/or Screen128 (see listing 2) in order to accomodate other memory sizes. The equates 'GetNextLibArg', 'IntegerArg' and 'BasicError' are BASIC routines defined in BMLL (Microsoft's Building Machine Language Libraries) which library routines may call. The BlankScreen routine reads the memory% parameter and determines the screen location. Then each location is loaded with $FFFFFFFF and the screen is blank. The routine then returns back to the calling program.

The InvertScreen routine (Listing 3) works much the same as the BlankScreen routine. You may call the routine with the statement: CALL InvertScreen (memory%). The passed integer variable memory% is the same as in the BlankScreen routine. The only difference in this routine is that each memory location is exclusive-ored with the value $FFFFFFFF.

Listing 4 and 5 are the Linker and Resource complier files needed by the MDS system to create the library resource file. See Nov 1985 MacTutor for details on how to us these files.

The Screen Demo program in listing 6 demonstrates the use of the BlankScreen and InvertScreen routines. It is advisable but not mandatory that you hide the cursor using HIDECURSOR before blanking or inverting the screen. The cursor may be turned on again with the SHOWCURSOR statement. If the cursor is not disabled then the 16 X 16 cursor location will not be blanked or inverted properly. These libraries may be used to create special effects in your program such as flashing the screen.

Expanding BASIC using library routines greatly improves the capabilities of your programs. If you have a favorite library routine, please send it to us. We would like to share more libraries with other useful purposes.


LISTING 1
;LIBinit routine (See MacTutor Nov. 1985 pg. 44 for comments)
;save as LIBinit.asm

LIBVER_Result  EQU 6
LIBinit:
 CLR.W  LIBVER_Result(a0)
LIBinitExit:
 MOVEQ  #0,d0
 RTS


LISTING 2
; BASIC BlankScreen Library Source Code
; By Dave Kelly
; MacTutor 1985

;Synopsis:
;CALL BlankScreen (memory%)
;Output:

GetNextLibArg  EQU $2A
IntegerArgEQU  $32
BasicErrorEQU  $42
Screen512 EQU  ((512-128)*1024)+108288
Screen128 EQU  108288

 
 JSR  GetNextLibArg(a5) ;Get the next argument
 JSR  IntegerArg(a5) ;[d3:w] = integer error if arg
 ;can't be forced into an 
 ;integer.
 CMP.W  #128,d3
 BEQ  Do128 ;branch if 128K memory
 CMP.W  #512,d3
 BEQ  Do512 ;branch if 512K memory
Device_Unavailable:
 MOVEQ  #68,d2   ;Device Unavailable error
 JSR  BasicError(a5)
Do512:
 LEA  Screen512,A0
 BRA  Blank
Do128:
 LEA  Screen128,A0
Blank:
 MOVE.W #5472-1,d1 ;setup high screen address
 MOVE.L #$FFFFFFFF,d0;move to d0
Loop:
 MOVE.L d0,(A0)+ ;set screen address to d0
 DBRA d1,Loop
 RTS
GetIntegerVar:
 JSR  GetNextLibArg(a5) ;Get the next argument
 JSR  IntegerArg(a5) ;[d3:w] = integer error if arg
 ;can't be forced into an 
 ;integer
 RTS    
LISTING 3
; BASIC InvertScreen Library Source Code
; By Dave Kelly
; MacTutor 1985
;save InvertScreen.asm

;Synopsis:
;CALL InvertScreen ( memory%)
;Output:

GetNextLibArg  EQU $2A
IntegerArgEQU  $32
BasicErrorEQU  $42
Screen512 EQU  ((512-128)*1024)+108288
Screen128 EQU  108288

 
 BSR  GetIntegerVar;integer arg in [d3:w]
 CMP.W  #128,d3
 BEQ  Do128 ;branch if 128K memory
 CMP.W  #512,d3
 BEQ  Do512 ;branch if 512K memory
Device_Unavailable:
 MOVEQ  #68,d2   ;Device Unavailable error
 JSR  BasicError(a5)
Do512:
 LEA  Screen512,A0
 BRA  Invert
Do128:
 LEA  Screen128,A0
Invert:
 MOVE.W #5472-1,D1
 MOVE.L #$FFFFFFFF,D0
Loop:
 EOR.L  D0,(A0)+
 DBRA D1,Loop
 RTS
GetIntegerVar:
 JSR  GetNextLibArg(a5) ;Get the next argument
 JSR  IntegerArg(a5) ;[d3:w] = integer (error if arg
 ;can't be forced into an 
 ;integer
 RTS    
LISTING 4
;Screen Library Link
;MacTutor 1986

/OUTPUT ScreenLib
LIBinit.Rel
<
InvertScreen.Rel
<
BlankScreen.Rel
$

LISTING 5
ScreenLib.Rsrc
BLIB
TYPE CODE = GNRL
LIBinit,1
.R
ScreenLib CODE 1

TYPE CODE = GNRL
InvertScreen,2
.R
ScreenLib CODE 2

TYPE CODE = GNRL
BlankScreen,3
.R
ScreenLib CODE 3
LISTING 6
'Screen Demo
'By Dave Kelly
'©MacTutor 1986

LIBRARY "Screen Demo"
mem%=128:IF FRE(0)>75000! THEN mem%=512
GOSUB Setmenubar
MENU ON
ON MENU GOSUB menucheck
loop: GOTO loop
menucheck:
    menunumber=MENU(0):IF menunumber<>6 THEN RETURN
    menuitem=MENU(1):MENU
    ON menuitem GOSUB Blank,invert,Flash,Demo,Quit
    Setmenubar:
        MENU RESET  ' Re-do menu bar
        MENU 6,0,1,"Program Menu"
        MENU 6,1,1,"Blank Screen"
        MENU 6,2,1,"Invert Screen"
        MENU 6,3,1,"Flash Screen"
        MENU 6,4,1,"Demo"
        MENU 6,5,1,"Quit"
RETURN
Blank:
HIDECURSOR
CALL BlankScreen(mem%)
SHOWCURSOR
RETURN

invert:
HIDECURSOR
CALL invertScreen(mem%)
SHOWCURSOR
RETURN

Flash:
HIDECURSOR
FOR i=0 TO 100
CALL invertScreen(mem%)
NEXT
SHOWCURSOR
RETURN

Demo:
WINDOW CLOSE 1
GOSUB Blank
WINDOW 1,"",(42,90)-(475,300),3
PRINT "Click here"
WHILE MOUSE(0)<>1:WEND
GOSUB invert
WHILE MOUSE(0)<>1:WEND
GOSUB invert:CLS:GOSUB invert
WINDOW 2,"",(102,140)-(410,240),3
PRINT "Click here"
WHILE MOUSE(0)<>1:WEND
GOSUB invert
WHILE MOUSE(0)<>1:WEND
GOSUB invert:CLS:GOSUB invert
WINDOW 3,"",(152,165)-(360,215),3
PRINT "Click here"
WHILE MOUSE(0)<>1:WEND
GOSUB invert
WHILE MOUSE(0)<>1:WEND
GOSUB invert:CLS:GOSUB invert
GOSUB invert
PRINT SPC(4);"Please make selection":PRINT SPC(5);"from menus above!"
RETURN

Quit:
FOR i=1 TO 4
    WINDOW CLOSE i
NEXT i
MENU RESET:LIBRARY CLOSE
CLS:END
 

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.