home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / pc_jr / jrnotes.arc / JRNOTES.DOC < prev    next >
Text File  |  1988-01-21  |  12KB  |  381 lines

  1. ES10079 Error in PCjr Technical Reference Manual Color Conn.
  2.  
  3. 00/00/00
  4. PCjr Color Display                   (4863001)
  5. IBM PCjr System Unit/keyboard               (4860067)
  6. Technical Reference                   (1502293)
  7.  
  8. The connector  shown on page 3-94 of the Technical Reference
  9. Manual is  mislabeled.  The  colors  are  shown in the wrong
  10. order.  The  correct  color  order  is BLUE, RED, INTENSITY,
  11. GREEN.  These colors correspond with pins 5,3,6, and 4.
  12.           *** END OF DOCUMENT  ***
  13. AH10226 How to find out how much memory is on the system
  14.  
  15. 11/11/85
  16. BASIC Interpreter by Microsoft               (6025010)
  17.  
  18. KEYWORDS: INFORMATION
  19. The amount  of  memory  on  the  system unit may be found by
  20. using the following line:
  21.  
  22.     10 DEF SEG=0
  23.     20 MEM=(256*PEEK(&H414))+PEEK(&H413)
  24.           *** END OF DOCUMENT  ***
  25. WY10032 Compact Printer Graphics Screen Dumps
  26.  
  27. 12/12/85
  28. PCjr System Unit/Keyboard          (4860004, 4860067)
  29. Compact Printer                       (5181001)
  30. PCjr Color Display                   (4863001)
  31.  
  32. KEYWORDS: INFORMATION PROBLEM SOLUTION
  33.  
  34. To allow  the  contents  of  the  PCjr  color  display to be
  35. printed on an IBM Personal Computer Compact Printer you must
  36. use Dos  3.0  or above.  Load Graphics.Com with the
  37. Compact parameter,  then  you  can  do graphics screen dumps
  38. using the compact printer.
  39.           *** END OF DOCUMENT  ***
  40.  
  41. Note :  This modification or recommendation has not been subjected to
  42.     exhaustive testing and may not, in all circumstances, provide
  43.     a complete solution.
  44. AH10233 Control-break - example of changing interrupt vector
  45.  
  46. 11/11/85
  47. BASIC Interpreter by Microsoft               (6025010)
  48. PCjr BASIC (Cartridge)                   (6024101)
  49.  
  50. KEYWORDS: INFORMATION
  51. Following   is  a  program  that  demonstrates  changing  an
  52. interrupt  vector  from  BASIC.  The vector being changed is
  53. the Control-break interrupt vector (interrupt number 1B, the
  54. Keyboard  break  interrupt) located at hex address 6C-6F, or
  55. decimal   108-111.   The  vector  will  be  changed  to  the
  56. Dummy_Return   vector,  which    effectively   disables   the
  57. Control-break    key.  Please  see  the  Technical  Reference
  58. manual  for  your  system  unit  for  more information about
  59. interrupt vectors.
  60.  
  61.     10 CLS:DEFINT A-I
  62.     20 DIM A(4)
  63.     30 DEF SEG=0
  64.     40 FOR I=1 TO 4
  65.     50 A(I)=PEEK(107+I) 'Save old interrupt vector
  66.     60 NEXT I
  67.     70 LOCATE 10,18
  68.     80 PRINT "Press any key to inhibit control-break";
  69.     90 A$=INKEY$:IF A$="" THEN GOTO 90
  70.     100 POKE 108,83 'Set to dummy_return vector..
  71.     110 POKE 109,255
  72.     120 POKE 110,0
  73.     130 POKE 111,18
  74.     140 LOCATE 15,18
  75.     150 PRINT "Control-break now inhibited - try it";
  76.     160 LOCATE 16,27
  77.     170 PRINT "(Press spacebar to exit)";
  78.     180 A$=INKEY$:IF A$=" " THEN 190 ELSE 180
  79.     190 FOR I=1 TO 4
  80.     200 POKE 107+I,A(I) 'Reset old vector
  81.     210 NEXT I
  82.     220 LOCATE 20,20
  83.     230 PRINT "Control-break is back on - try it";
  84.     240 GOTO 240
  85.           *** END OF DOCUMENT  ***
  86. TGW0049 PCjr with internal modem and serial printer
  87.  
  88. 07/17/85
  89. PCjr Internal Modem (8600008)
  90. Compact Printer (5181001)
  91.  
  92. KEYWORDS: PROBLEM SOLUTION INSTALLATION INFORMATION
  93.  
  94. If an Assistant Series  program  is  used on a PCjr that has
  95. the IBM Internal Modem and the IBM Compact Printer installed
  96. then option 1  (Select  Printer)  in SETUP is used to select
  97. printer type "9  Other"  and  COM2:  to  indicate the serial
  98. printer port is  the  selected  output device.  Use option 2
  99. (Set up serial  card)  in  SETUP  to  initialize  the serial
  100. printer port with these parameters:
  101.  
  102.           Baud Rate = 1200
  103.           Parity    = none
  104.           Data Bits = 8
  105.           Stop Bits = 2
  106.           XON/XOFF  = n
  107.           *** END OF DOCUMENT  ***
  108. EMS0017 REDIRECTION OF LPT1.  PCJR INTERNAL MODEM REDIRECTED
  109.  
  110. 10/23/85
  111. IBM PCjr  (4860067)
  112.  
  113. A base model PCjr with no internal  modem  and  no  parallel
  114. printer  adapter  automatically  sends  output  intended for
  115. LPT1:  to the serial port (for the Compact printer).  Hence,
  116. the  use  of  the  serial device is transparent to the user.
  117. This serial port is also COM1:  with no  options  installed.
  118. If  an  internal  modem  is  installed  the serial port then
  119. becomes COM2:.  Under these conditions the printer output is
  120. then  sent  to the COM2:  serial port (the Compact printer).
  121. This is handled automatically by ROM BIOS.
  122.  
  123. If a  parallel  printer  adapter  is  attached,  the  output
  124. intended  for the printer is automatically sent to the newly
  125. attached parallel printer.   To  use  the  Compact  printer,
  126. output must be redirected to the serial port.
  127.  
  128.      MODE COM1:1200,N,8,2,P
  129.      MODE LPT1:=COM1:
  130.  
  131. The  above  two  DOS  commands  work  on  a  PCjr without an
  132. internal modem.  COM2:  is used when the modem is installed.
  133.           *** END OF DOCUMENT  ***
  134.  
  135.  
  136.         To All Jr Owners:
  137.          Here is a packet of information I received from IBM's
  138.         main technical support database system. There are a few
  139.         other notes regarding obscure programs on the Jr. like
  140.         Homeword, I didn't bother to include them.
  141.          There are a few files that are not specific to the jr.
  142.         but they apply anyway.
  143.          Good luck with your jr's
  144.  
  145.                 Sincerely,
  146.  
  147.                 Charles Eicher
  148.                 Computerland of Studio City
  149.                 11313 Ventura Blvd
  150.                 Studio City, CA 91602
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194. EMS0030 PCjr Keyboard scan codes different
  195.  
  196. 11/01/83
  197. IBM PCjr System Unit/keyboard               (4860067)
  198.  
  199. Single character scan codes are identical.
  200.  
  201. The extended scan codes  released  by  the PCjr keyboard are
  202. slightly different than the PC's. If the Fn key is not
  203. released before pressing the f7-10 keys the following is tru
  204.       **Shift  F9  gives no scan code on the PCjr.
  205.       **Ctrl F8, Ctrl F9, and Ctrl F10 give no scan code.
  206.       **Alt F7 also results in no scan code being released.
  207.  
  208. The shift print screen works just like the PC.  The  Control
  209. Print Screen is replaced by Fn/Echo.
  210.           *** END OF DOCUMENT  ***
  211. JC20024 PCjr Time of Day Clock Gains Time.
  212.  
  213. 07/16/85
  214. IBM PCjr System Unit/keyboard               (4860067)
  215.  
  216. Keywords: Problem Information
  217.  
  218. The PCjr time of day  clock  gains  time  each  time  a disk
  219. access is performed.  This  is  a  known BIOS problem and at
  220. this time a solution has not been reached.
  221.           *** END OF DOCUMENT  ***
  222. GB10005 PCjr Serial Port
  223.  
  224. 07/17/85
  225. UNIT-SYSTEM JR               (4860067)
  226.  
  227. KEYWORDS: PROBLEM REUUIREMENTS SOLUTION
  228.  
  229. The maximum  speed  for  the  ASYNC port on the PCjr is 4800
  230. baud.
  231.  
  232. This  may  make  it difficult to install some serial devices
  233. unless  the  devices  have  the  capability to adapt to this
  234. speed.
  235.           *** END OF DOCUMENT  ***
  236. GB10007 PCjr Function Key Usage
  237.  
  238. 07/17/85
  239. IBM PCjr System Unit/keyboard               (4860067)
  240.  
  241. KEYWORDS: INFORMATION PROBLEM SOLUTION
  242.  
  243. PCjr function keys may appear not to function if the correct
  244. procedure is  not  followed.  The proper use is to press and
  245. RELEASE the  Fn  key  before pressing a numeric key.  In the
  246. case of extended codes the shift or the alt key is held down
  247. while pressing  and  RELEASING  the  Fn key then while still
  248. holding the shift or alt key depressed, pressing the numeric
  249. key. The keyboard definition chart in the PCjr GTO states to
  250. press and  hold  certain  keys  but  does not say to release
  251. others.
  252.           *** END OF DOCUMENT  ***
  253. JC20007 Use of ALT key to enter extended codes on the PCjr.
  254.  
  255. 07/17/85
  256. UNIT-SYSTEM JR               (4860067)
  257.  
  258. KEYWORDS: INFORMATION PROBLEM
  259.  
  260. This  document  is  to clarify the use of the ALT key on the
  261. PCjr  keyboard when entering the extended codes.  When using
  262. the  ALT  key to enter the extended codes, the keyboard must
  263. be  in Numeric Lock first.  To put the keyboard into Numeric
  264. Lock,  hold  ALT and press FN, then N. (This is a toggle, to
  265. take  the  keyboard  out  of  Numeric  Lock, repeat the same
  266. procedure.)  Once  the  keyboard is in Numeric Lock, all 256
  267. extended  codes  may be entered by  holding down the ALT key
  268. and  then  typing in the numeric value of the extended code.
  269. See  page 4-9 in the Guide to Operations Personal Computer -
  270. PCjr manual, PN:1592292.
  271.           *** END OF DOCUMENT  ***
  272. MV10124 Using a PCjr as a terminal on XENIX
  273.  
  274. 07/20/85
  275. PC XENIX OPERATING SYSTEM      (6024207)
  276. UNIT-SYSTEM JR               (4860067)
  277. KEYWORDS: INFORMATION SOLUTION INSTALLATION REQUIREMENTS
  278.  
  279. A PCjr can easily be attached to a system running XENIX as a
  280. "dumb"  terminal.  A  PCjr  is  a  good  choice  because  in
  281. addition to its use  as a terminal, it can also be used as a
  282. stand alone computer.
  283.  
  284. For  relatively low cost, a user can have both a terminal
  285. and a powerful computer.
  286.           *** END OF DOCUMENT  ***
  287. DLE0026 Non-Maskable Interrupt problem in DOS 2.1
  288.  
  289. 08/02/85
  290. IBM PCjr System Unit/keyboard               (4860067)
  291. DOS Disk Operating System Ver. 2.0 (6024061) & 2.1 (6024120)
  292.  
  293.  
  294. KEYWORDS:  PROBLEM INFORMATION UPDATE
  295.  
  296. There is a problem in DOS 2.1 that may  manifest  itself  by
  297. hanging  the system after a keystroke in any application and
  298. will be restricted mainly to the PCjr.
  299.  
  300. A  patch  to  correct  the  problem  is available on the DOS
  301. 1.1/2.0/2.1  PATCH  Diskette.  This diskette is available on
  302. request from the Dealer Support Center.
  303.           *** END OF DOCUMENT  ***
  304. RS10026 Program Languge Compilers on the PCjr
  305.  
  306. 08/07/85
  307. FORTRAN Compiler Version 1.0               (6024012)
  308. Pascal Compiler Version 1.0               (6024010)
  309. IBM PCjr System Unit/keyboard               (4860067)
  310. FORTRAN Compiler Version 2.0               (6024127)
  311. Pascal Compiler Version 2.0               (6024128)
  312.  
  313.  
  314. KEYWORDS: INFORMATION INSTALLATION REQUIREMENTS
  315.  
  316. Yes,  the language  compilers  can run on the IBM PCjr.  You
  317. must  take  several  factors  into consideration.  Lets list
  318. these first.
  319.  
  320. 1.  Both  of the version 2.0  compilers  require  160KB  of
  321. memory for DOS 2.0 and 190KB for later versions of DOS.
  322.  
  323. 2. Both of the version 2.0  compilers  require  two diskette
  324. drives.
  325.  
  326. The IBM Software Guide(dated September 1984) stipulates that
  327. the  above  compilers "Needs extended memory with the PCjr".
  328. If  you  look  at the MINIMUM SYSTEM REQUIREMENTS section of
  329. the  same  brochure,  the FORTRAN, and PASCAL entries states
  330. that  the  IBM PCjr requires 512KB to apportion between user
  331. memory and RAM disk".
  332.  
  333. The  512K  breaks  down  as follows:  approximately 32KB for
  334. DOS,  16KB  for  Video  Buffer,  160KB  for  the  particular
  335. compiler,  and  314KB  for  a  RAM disk.  In this manner the
  336. requirements   are   met,  and  the  compiler  will  execute
  337. properly.
  338.           *** END OF DOCUMENT  ***
  339. EF10144 Screen intensity
  340.  
  341. 09/05/85
  342. IBM PCjr BASIC (with Cartridge)  Version 1.0       (6024101)
  343. IBM PCjr System Unit/keyboard               (4860067)
  344.  
  345. KEYWORDS: INFORMATION
  346.  
  347. ThePCjr  provides  for full contrast/brightness on all types
  348. of monitors  when  it  is running with DOS 2.1 but, when the
  349. machine goes  into  BASIC  either directly or via a program,
  350. the  screen  intensity  drops to approximately half.  On the
  351. display,  full gain on contrast and brightness controls does
  352. not allow  you  to regain a normal brightness.  This is true
  353. in Cassette or cartridge BASIC.  The intensity is  purposely
  354. dimmed so  that  it  does  not overdrive an RGB or composite
  355. monitor.  To  get  full  brightness on the display enter the
  356. following BASIC statement:
  357.  
  358.     Screen 1,0
  359.  
  360. This statement will set your screen  to high intensity.
  361.  
  362.           *** END OF DOCUMENT  ***
  363. JC20006 PCjr Cartridge Basic Screen Mode 5 or 6
  364.  
  365. 10/11/85
  366. IBM PCjr BASIC (with Cartridge)  Version 1.0       (6024101)
  367. IBM PCjr System Unit/keyboard               (4860067)
  368. PCjr Power Expansion Attachment               (8600006)
  369.  
  370.  
  371. KEYWORDS: PROBLEM SOLUTION INFORMATION
  372.  
  373. Basic  Statement,  SCREEN,  Modes  5  or  6 are supported in
  374. Cartridge  Basic  only  and  require  a  minimum  of 128K of
  375. memory.   If   you  have  not  issued  the  Basic  Statement
  376. CLEAR,,,32768  prior  to  issuing  SCREEN,  Mode  5 or 6, an
  377. Illegal  Function  Call  will  result.  See  Basic  Personal
  378. Computer  -  PCjr  Manual (6024101), for the CLEAR statement
  379. and for the  SCREEN statement.
  380.           *** END OF DOCUMENT  ***
  381.