DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: G T

⟦c8d534ec7⟧ TextFile

    Length: 9397 (0x24b5)
    Types: TextFile
    Names: »GRAPHICS.PRO«

Derivation

└─⟦2bb2495b8⟧ Bits:30004141/disk1.imd SW93406I MS-DOS 4.0
    └─⟦this⟧ »GRAPHICS.PRO« 
└─⟦520af3d8f⟧ Bits:30004141/disk3.imd SW93406I MS-DOS 4.0
    └─⟦this⟧ »GRAPHICS.PRO« 

TextFile

;----------------------------------------------------------------------------\r
     ;DOS (C)Copyright 1988 Microsoft\r
     ;Licensed Material - Program Property of Microsoft\r
;----------------------------------------------------------------------------\r
PRINTER GRAPHICS,THERMAL    ;; 5152, 4201, 4202(8"), 5201-002(8"), 5202, 3812\r
			    ;; 4207, 4208, 5140\r
\r
   ; Maximum Print width: 8"\r
   ; Horizontal BPI: 120    Vertical BPI: 72\r
   ; SETUP Statements contain the following escape sequences:\r
   ;   27,51,24 = set line spacing to 24/216\r
   ; GRAPHICS Statements use ESC "L" with the last two bytes being\r
   ;  the data count (low,high)\r
\r
  DISPLAYMODE 4,5,13,19     ;; 320x200 > 6.7"x8.9" rotated\r
    SETup 27,51,24\r
    GRAPHICS 32,32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,2,ROTATE\r
    PRINTBOX LCD,2,2,ROTATE\r
\r
  DISPLAYMODE 6,14	   ;; 640x200 > 6.7"x8.9" rotated\r
    SETup 27,51,24\r
    GRAPHICS 32,32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,1,ROTATE\r
    PRINTBOX LCD,2,1,ROTATE\r
\r
  DISPLAYMODE 15,16	   ;; 640x350 > 5.8"x8.9" rotated\r
    SETup 27,51,24\r
    GRAPHICS 32,32,32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,2,1,ROTATE\r
    PRINTBOX LCD	     ;; PC/Convertible doesn't support these modes\r
\r
  DISPLAYMODE 17,18	   ;; 640x480 > 8"x8.9" rotated\r
    SETup 27,51,24\r
    GRAPHICS 27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,2,1,ROTATE\r
    PRINTBOX LCD	     ;; PC/Convertible doesn't support these modes\r
\r
\r
;---------------------------------------------------------------------------\r
PRINTER COLOR8		     ;; 5182 CMY Ribbon\r
\r
   ; Maximum Print width: 8"\r
   ; Horizontal BPI: 168 in 1:1 aspect ratio, 140 in 5:6 aspect ratio\r
   ; Vertical BPI: 84\r
   ; SETUP Statements contain the following escape sequences:\r
   ;   27,51,14 = set line spacing to 14/144\r
   ;   27,110,[0|1] = 0 sets aspect ratio to 5:6, 1 sets it to 1:1\r
   ; GRAPHICS Statements use ESC "L" with the last two bytes being\r
   ;  the data count (low,high)\r
\r
  COLORSELECT Y,27,121	     ;; yellow band\r
  COLORSELECT M,27,109	     ;; magenta band\r
  COLORSELECT C,27,99	     ;; cyan band\r
  COLORSELECT B,27,98	     ;; black band\r
			     ;;\r
			     ;; Following RGB's represent the first 16\r
			     ;; screen colors.\r
			     ;; SCREEN COLOR	   PRINT COLOR\r
			     ;; ------------	   -----------\r
  COLORPRINT 0,0,0,B	     ;; BLACK		   BLACK\r
  COLORPRINT 0,0,42,C	     ;; BLUE		   CYAN\r
  COLORPRINT 0,42,0,Y,C      ;; GREEN		   GREEN\r
  COLORPRINT 0,42,42,C	     ;; CYAN		   CYAN\r
  COLORPRINT 42,0,0,Y,M      ;; RED		   RED\r
  COLORPRINT 42,0,42,C,M     ;; PURPLE		   PURPLE\r
  COLORPRINT 42,21,0,Y,C,M   ;; BROWN		   BROWN\r
  COLORPRINT 42,42,42	     ;; LOW WHITE	   WHITE (NOTHING)\r
  COLORPRINT 21,21,21,B      ;; GREY		   BLACK\r
  COLORPRINT 21,21,63,C      ;; HIGH BLUE	   CYAN\r
  COLORPRINT 21,63,21,Y,C    ;; HIGH GREEN	   GREEN\r
  COLORPRINT 21,63,63,C      ;; HIGH CYAN	   CYAN\r
  COLORPRINT 63,21,21,Y,M    ;; HIGH RED	   RED\r
  COLORPRINT 63,21,63,M      ;; MAGENTA 	   MAGENTA\r
  COLORPRINT 63,63,21,Y      ;; YELLOW		   YELLOW\r
  COLORPRINT 63,63,63	     ;; HIGH WHITE	   WHITE (NOTHING)\r
\r
  COLORPRINT 42,42,0,Y	     ;; This statement maps the "yellow" in CGA\r
			     ;;  palette 0 to yellow\r
			     ;;\r
  DISPLAYMODE 4,5,13,19       ;; 320x200\r
    SETUP 27,51,14,27,110,0   ;; aspect ratio = 5:6\r
    GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,2,ROTATE\r
  DISPLAYMODE 6,14	      ;; 640x200\r
     SETUP 27,51,14,27,110,0  ;; aspect ratio = 5:6\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,4,1,ROTATE\r
  DISPLAYMODE 15,16	      ;; 640x350\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,3,1,ROTATE\r
  DISPLAYMODE 17,18	      ;; 640x480\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,2,1\r
\r
;---------------------------------------------------------------------------\r
PRINTER COLOR4		     ;; 5182 RGB Ribbon\r
\r
   ; Maximum Print width: 8"\r
   ; Horizontal BPI: 168 in 1:1 aspect ratio, 140 in 5:6 aspect ratio\r
   ; Vertical BPI: 84\r
   ; SETUP Statements contain the following escape sequences:\r
   ;   27,51,14 = set line spacing to 14/144\r
   ;   27,110,[0|1] = 0 sets aspect ratio to 5:6, 1 sets it to 1:1\r
   ; GRAPHICS Statements use ESC "L" with the last two bytes being\r
   ;  the data count (low,high)\r
\r
  COLORSELECT R,27,121	     ;; red band\r
  COLORSELECT G,27,109	     ;; green band\r
  COLORSELECT B,27,99	     ;; blue band\r
  COLORSELECT X,27,98	     ;; black band\r
			     ;;\r
			     ;; Following RGB's represent the first 16\r
			     ;; screen colors.\r
			     ;; SCREEN COLOR	   PRINT COLOR\r
			     ;; ------------	   -----------\r
  COLORPRINT 0,0,0,X	     ;; BLACK		   BLACK\r
  COLORPRINT 0,0,42,B	     ;; BLUE		   BLUE\r
  COLORPRINT 0,42,0,G	     ;; GREEN		   GREEN\r
  COLORPRINT 0,42,42,B	     ;; CYAN		   BLUE\r
  COLORPRINT 42,0,0,R	     ;; RED		   RED\r
  COLORPRINT 42,0,42,R	     ;; PURPLE		   RED\r
  COLORPRINT 42,21,0,X	     ;; BROWN		   BLACK\r
  COLORPRINT 42,42,42	     ;; LOW WHITE	   WHITE (NOTHING)\r
  COLORPRINT 21,21,21,X      ;; GREY		   BLACK\r
  COLORPRINT 21,21,63,B      ;; HIGH BLUE	   BLUE\r
  COLORPRINT 21,63,21,G      ;; HIGH GREEN	   GREEN\r
  COLORPRINT 21,63,63,B      ;; HIGH CYAN	   BLUE\r
  COLORPRINT 63,21,21,R      ;; HIGH RED	   RED\r
  COLORPRINT 63,21,63,R      ;; MAGENTA 	   RED\r
  COLORPRINT 63,63,21	     ;; YELLOW		   WHITE (NOTHING)\r
  COLORPRINT 63,63,63	     ;; HIGH WHITE	   WHITE (NOTHING)\r
\r
  COLORPRINT 42,42,0,B	     ;; This statement maps the "yellow" in CGA\r
			     ;;  palette 0 to blue as was done in\r
			     ;;   versions of GRAPHICS\r
			     ;;\r
  DISPLAYMODE 4,5,13,19       ;; 320x200\r
    SETUP 27,51,14,27,110,0   ;; aspect ratio = 5:6\r
    GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,2,ROTATE\r
  DISPLAYMODE 6,14	      ;; 640x200\r
     SETUP 27,51,14,27,110,0  ;; aspect ratio = 5:6\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,4,1,ROTATE\r
  DISPLAYMODE 15,16	      ;; 640x350\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,3,1,ROTATE\r
  DISPLAYMODE 17,18	      ;; 640x480\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,2,1\r
\r
;---------------------------------------------------------------------------\r
PRINTER GRAPHICSWIDE   ;; 4202(13.5"), 5201-002(13.5")\r
\r
   ; Maximum Print width: 13.5"\r
   ; Horizontal BPI: 120    Vertical BPI: 72\r
   ; SETUP Statements contain the following escape sequences:\r
   ;   27,88,1,255 = enable 13.5" printing\r
   ;   27,51,24 = set line spacing to 24/216\r
   ;   27,51,18 = set line spacing to 18/216 (320x200 MODES ONLY!!)\r
   ; GRAPHICS Statements use ESC "L" with the last two bytes being\r
   ;  the data count (low,high)\r
\r
  DISPLAYMODE 4,5,13,19     ;; 320x200	> 10.7"x8.3" non-rotated\r
    SETup 27,88,1,255,27,51,18\r
    GRAPHICS 27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,3\r
\r
  DISPLAYMODE 6,14	    ;; 640x200 - same as for 8" printing\r
    SETup 27,88,1,255,27,51,24\r
    GRAPHICS 27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,1,ROTATE\r
\r
  DISPLAYMODE 15,16	    ;; 640x350 > 11.7"x17.8" rotated\r
    SETup 27,88,1,255,27,51,24\r
    GRAPHICS 27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,2,ROTATE\r
\r
  DISPLAYMODE 17,18	    ;; 640x480 > 12"x17.8" rotated\r
    SETup 27,88,1,255,27,51,24\r
    GRAPHICS 27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,3,2,ROTATE\r
\r
;---------------------------------------------------------------------------\r
PRINTER COLOR1		       ;; 5182 with black ribbon\r
\r
   ; Maximum Print width: 8"\r
   ; Horizontal BPI: 168 in 1:1 aspect ratio, 140 in 5:6 aspect ratio\r
   ; Vertical BPI: 84\r
   ; SETUP Statements contain the following escape sequences:\r
   ;   27,51,14 = set line spacing to 14/144\r
   ;   27,110,[0|1] = 0 sets aspect ratio to 5:6, 1 sets it to 1:1\r
   ; GRAPHICS Statements use ESC "L" with the last two bytes being\r
   ;  the data count (low,high)\r
\r
  DARKADJUST 0		      ; Code a positive number to lighten\r
			      ;  printing. Suggested value = 10\r
\r
  DISPLAYMODE 4,5,13,19       ;; 320x200\r
    SETUP 27,51,14,27,110,0   ;; aspect ratio = 5:6\r
    GRAPHICS 32,32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,2,ROTATE\r
    PRINTBOX LCD,2,2,ROTATE\r
\r
  DISPLAYMODE 6,14	      ;; 640x200\r
    SETUP 27,51,14,27,110,0  ;; aspect ratio = 5:6\r
    GRAPHICS 32,32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
    PRINTBOX STD,4,1,ROTATE\r
    PRINTBOX LCD,2,1,ROTATE\r
\r
  DISPLAYMODE 15,16	      ;; 640x350\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,3,1,ROTATE\r
     PRINTBOX LCD	      ;; PC/Convertible doesn't support these modes\r
\r
  DISPLAYMODE 17,18	      ;; 640x480\r
     SETUP 27,51,14,27,110,1  ;; aspect ratio = 1:1\r
     GRAPHICS 32,32,32,32,27,76,LOWCOUNT,HIGHCOUNT\r
     PRINTBOX STD,2,1\r
     PRINTBOX LCD	      ;; PC/Convertible doesn't support these modes\r
\r
\r
;===========================================================================\r
;			    End of Profile\r
;===========================================================================\r