home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PalShell V1.00 29-July-1993
- ;
-
- ; by Jan Hagqvist
-
- ; Makes the Shell-window PAL-sized 640x256 instead of 640x200
-
-
- XREF _LVOOldOpenLibrary
- XREF _LVOCloseLibrary
- XREF _LVOSizeWindow
-
-
- PalShell
- move.l 4,a6
- lea IntuitionName(pc),a1
- jsr _LVOOldOpenLibrary(a6)
- tst.l d0
- beq.s Quit2
-
- move.l d0,a6
- move.l 52(a6),a0
- moveq.l #0,d0
- moveq.l #56,d1
- jsr _LVOSizeWindow(a6)
-
- Quit
- move.l a6,a1
- move.l 4,a6
- jsr _LVOCloseLibrary(a6)
- Quit2
- moveq.l #0,d0
- rts
-
-
- IntuitionName dc.b 'intuition.library',0
-
- END
-