home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / v / v93n03x.zip / V93N030.IBM < prev    next >
Internet Message Format  |  1993-03-01  |  25KB

  1. From:    WF02::IN%"Info-IBMPC%wsmr-simtel20.ARMY.mil@WS5.CIS.TEMPLE.EDU"  1-MAR-1993 07:43:08.29
  2. To:    James Gerber <GERBER@TMPLCIS.BITNET>
  3. CC:    
  4. Subj:    Info-IBMPC Digest V93 #30
  5.  
  6. Return-path: $$INFOPC
  7.  <@WS5.CIS.TEMPLE.EDU:$$INFOPC%VM.TEMPLE.EDU@RICEVM1.BITNET>
  8. Received: from JNET-DAEMON by GRAD.CIS.TEMPLE.EDU; Mon, 1 Mar 93 06:17 EST
  9. Received: From TEMPLEVM(MAILER) by TMPLCIS with Jnet id 9721 for
  10.  GERBER@TMPLCIS; Mon,  1 Mar 93 06:17 EDT
  11. Received: from TEMPLEVM.BITNET (NJE origin LISTSERV@TEMPLEVM) by VM.TEMPLE.EDU
  12.  (LMail V1.1d/1.7f) with BSMTP id 1266; Mon, 1 Mar 1993 06:18:01 -0500
  13. Date: Wed, 24 Feb 1993 01:56:33 GMT+1
  14. From: Info-IBMPC Digest <Info-IBMPC%wsmr-simtel20.Army.mil@WS5.CIS.TEMPLE.EDU>
  15. Subject: Info-IBMPC Digest V93 #30
  16. Sender: Info-IBMPC redistribution list <$$INFOPC@RICEVM1.BITNET>
  17. To: James Gerber <GERBER@TMPLCIS.BITNET>
  18. Reply-to: Info-IBMPC%wsmr-simtel20.ARMY.mil@WS5.CIS.TEMPLE.EDU
  19.  
  20. Info-IBMPC Digest           Wed, 24 Feb 93       Volume 93 : Issue  30
  21.  
  22. Today's Editor:
  23.          Gregory Hicks - Rota Spain <GHICKS@wsmr-simtel20.Army.Mil>
  24.  
  25. Today's Topics:
  26.                          486dx, 486sx, 486dx2
  27.                     Borland C++'s printf (2 msgs)
  28.                   Info-IBMPC Digest V93 #20 (2 msgs)
  29.                 In search of PC and Turbo Pascal gurus
  30.          INSET HP550C color printer driver color screen dump
  31.       Looking for Windows 3.1 driver for Orchid Pro-Designer II
  32.                              Modem Games
  33.                                 MSCDEX
  34.                   nec intersect cdr-25  cd rom drive
  35.            Null modem cables ... RS232C connections/pinouts
  36.                      Problems with Nuvotel-modem
  37.                            RE! Date problem
  38.                               READ THIS!
  39.                           Request for info.
  40.  
  41. Send Replies or notes for publication to: <INFO-IBMPC@brl.mil>
  42.  
  43. Send requests of an administrative nature (addition to, deletion from
  44. the distribution list, et al) to: <INFO-IBMPC-REQUEST@brl.mil>
  45.  
  46. Addition and Deletion requests for UK readers should be sent to:
  47. <INFO-IBMPC-REQUEST@DARESBURY.AC.UK>
  48.  
  49. Archives of past issues of the Info-IBMPC Digest are available by FTP
  50. ONLY from WSMR-SIMTEL20.ARMY.MIL in directory PD2:<ARCHIVES.IBMPC>.
  51.  
  52. ----------------------------------------------------------------------
  53.  
  54. Date: Tue, 16 Feb 1993 15:30:50 GMT
  55. From: th9708@meibm8.cen.uiuc.edu (Todd Lee Henderson)
  56. Subject: 486dx, 486sx, 486dx2
  57.  
  58. Info-IBMPC@wsmr-simtel20.ARMY.mil writes:
  59.  
  60. >Info-IBMPC@wsmr-simtel20.ARMY.mil writes:
  61.  
  62. >>Info-IBMPC@wsmr-simtel20.ARMY.mil writes:
  63.  
  64. >  [...deleted..]
  65.  
  66. >> 1- A 486DX has a complete math coprocessor built into it.
  67.  
  68. >> 2- A 486SX is a 32bit CPU with no math coprocessor.
  69.  
  70. >> 3- A 486DX2 is an OEM product and can not be bought by end
  71. >>users It is bought and instaled by manufacturers.
  72.  
  73. If you call around you can find quite a few places that will sell you the
  74. 486DX2(not the overdrive).  Now whether they are suppose to or not, I don't
  75. know.
  76.  
  77. Todd
  78.  
  79.  
  80. ------------------------------
  81.  
  82. Date: Mon, 15 Feb 93 11:57:17 EST
  83. From: jarnot@kin.lap.upenn.edu (Kevin J. Jarnot)
  84. Subject: Borland C++'s printf
  85.  
  86.  rmascaro@uniwa.uwa.edu.au (Robert Mascaro) writes:
  87. >>I am not sure that this is the right group but here goes.
  88. >>I am writing a TSR using C++ (borland's) and are having trouble with the
  89. >>printf statement. I am outputing integer variables to the screen and
  90. >>need a printf("%i",x) etc statement. The problem is that it crashes at
  91. >>the point of output each time. I have tryed a "cputs" to test the
  92. >>problem and this works fine, however any printf statement will crash the
  93. >>machine.
  94. >>As background, the TSR I mentioned makes a clock tick on the screen
  95. >>while using DOS.
  96.  
  97. >This may help to explain the problem- it may not.
  98. >
  99. >When you try using things like printf() in a TSR you run the risk of
  100. >interfering with another "thread" of the function that is running in
  101. >the foreground.
  102. >
  103. >There are two ways of preventing disaster in this case.  The simplest
  104. >way is to have a semaphore that all the threads fight over.  A
  105. >semaphore works the same way as a railroad semaphore -- the guy with
  106. >the green light gets to go and everyone else waits to use the track.
  107.  
  108. Another way to get around this is to avoid using the DOS printing commands
  109. and to print directly through the BIOS.
  110.  
  111. Kevin
  112.  
  113.  
  114. ---
  115. Kevin J. Jarnot (jarnot@kin.lap.upenn.edu)      | "The monkey-boys are evil -
  116. Lead Programmer/Analyst/Keyboardist             | Lord Whorfin is supreme..."
  117. Univ. of Pennsylvania Language Analysis Center  |
  118. 3700 Market St, Suite 202  Phila, PA 19104      |       "Vita Non Jerk"
  119.  
  120.  
  121.  
  122. ------------------------------
  123.  
  124. Date: Mon, 15 Feb 93 22:28:33 EST
  125. From: TAWED%ETSU.BITNET@uga.cc.uga.edu
  126. Subject: Borland C++'s printf
  127.  
  128. hey!!!!
  129.  
  130. I was looking at that printf() function and thought that you might try this
  131. instead..
  132.  
  133. printf("%d\n",_variable);
  134.  
  135. I don't know if the %i is valid or not since I don't have my books infront of
  136. me right now or not.
  137.  
  138. Let me know how this works o.k.??
  139.  
  140. /*=====================================================================*/
  141. /*standard text for message tail.*/
  142.  
  143. #include "STANDARD.DISCLAIM.A"
  144. #define Hacker     "Ed Street" <TAWED@ETSU.BITNET>
  145.  
  146. void main(void)    {
  147.     printf("\n\nHACKERS RULE!!!!\n\n\n");
  148.     printf("\nTo boldly Hacker where no Hacker has hacked before: \n"),
  149.     printf("%s\n",Hacker);
  150.     printf("\nThe Views expressed herein arn't affiliated with *ANY*\n");
  151.     printf("Organization or Instute in any way.\n");
  152. }
  153. /*=====================================================================*/
  154.  
  155. ------------------------------
  156.  
  157. Date: Mon, 15 Feb 93 12:48:49 -0400
  158. From: jezsik@px3.stfx.ca (Louis Jezsik)
  159. Subject: Info-IBMPC Digest V93 #20
  160.  
  161. Small Word Processor and Spread Sheet wanted
  162. Set your clocks back ten years for this one.  A friend has been
  163. given an old PC from the university for whatever use he can
  164. find for it (sorry, I already came up with door-stop and paper-
  165. weight); it's a 640k ram, dual 5.25" floppies (no HD), Herc.
  166. graphics on a 8088 or 8086 board.  The question: what can he
  167. use for a Word Processor and Spread Sheet that will run from
  168. two floppies?  Shareware or commercial, no matter, he just
  169. wants to "do stuff."  Thank you for any help provided.
  170. Louis Jezsik
  171. jezsik@phoenix.stfx.ca
  172.  
  173. ------------------------------
  174.  
  175. Date: Tue, 16 Feb 93 12:27:15 +0100
  176. From: klebacq@vnet3.vub.ac.be (Kris Lebacq)
  177. Subject: Info-IBMPC Digest V93 #20
  178.  
  179. >I work at Centro di Calcolo di Perugia; we have an users-rooms to test
  180. >original software.  Is there a public domain or shareware (with
  181. >password if possible) that permit to forbid the use of drive A: or B:
  182. >during a job session in C: to prevent a copy or backup of our original
  183. >software.
  184.  
  185. I think I have a solution. I have never tested it out.. I have tested once
  186. a small program called 'PROT' that allowed me to make my harddisk write
  187. protected. (usefull if you like to play somethimes with virusses). If you
  188. would execute PROT a:, and PROT b: your problem might be gone.. Never
  189. tested it.. Look on a local BBS to obtain this program. Else, I thionk
  190. (hope) I've got this (very small) program on my BBS.
  191.  
  192. Greetz,
  193.  
  194.  
  195.          ************************************************
  196.          *                 Kris Lebacq                  *
  197.          * Brussels Free University - Computer Science  *
  198.          ************************************************
  199.          * E-mail: klebacq@vnet3.vub.ac.be              *
  200.          *         we44756@is2.vub.ac.be                *
  201.          *         Kris.Lebacq@f812.n292.z2.fidonet.org *
  202.          * Fax:  32-3-449.42.47 (G3 fax at 14k4)        *
  203.          * Data: 32-3-448.06.59 (V32B,V42B,HST 16k8)    *
  204.          *       32-3-449.42.47 (2 * V32B,ZyXEL 16k8)   *
  205.          ************************************************
  206.  
  207.  
  208. ------------------------------
  209.  
  210. Date: Tue, 16 Feb 1993 11:48 EDT
  211. From: EEID%ALBION.BITNET@pucc.Princeton.EDU
  212. Subject: In search of PC and Turbo Pascal gurus
  213.  
  214. > 1) How can the same executable behave differently when it is executed
  215. > consecutively? [for Turbo 6.0]
  216.  
  217. Perhaps there are variables that are not initialized in the code.  If this is
  218. so, the variables are assigned random values.  For example, say you have an
  219. integer X.  If there's nothing in the program that alters X, it could be 0
  220. during one run and -4512 the next.  Any statement that references X is going to
  221. be fed a random number.
  222.  
  223. Make sure that all variables are initialized somehow.  Outside of this, I don't
  224. know what to suggest...
  225.  
  226.                                          - Erik Eid
  227.                                            hardly a "guru"
  228.  
  229. ------------------------------
  230.  
  231. Date: Mon, 15 Feb 93 19:27:14 -0500
  232. From: Joe Morris <jcmorris@mwunix.mitre.org>
  233. Subject: INSET HP550C color printer driver color screen dump
  234.  
  235. In INFO-IBMPC 93.21 Filipe Santos wrote:
  236.  
  237. >Sometime ago I used INSET, and IMHO it was a nice program for
  238. >capturing, manipulating and printing screens to color printers.
  239. >Moreover, this was the only program that knew how to drive an old
  240. >Tektronix 4696 color printer. Our new HP 550C came with drivers for
  241. >INSET, which now seems to come bundled with Wordstar, but these drivers
  242. >do not work with my old version (circa 89).
  243.  
  244. >Do any of you know the address/fax/phone numbers of the folks who
  245. >publish this software ? All the old manuals are gone, and I want to
  246. >purchase a new copy, ASAP.
  247.  
  248. You're probably looking for:
  249.  
  250.    Inset Systems
  251.    71 Commerce Drive
  252.    Brookfield, CT 06804-3405
  253.  
  254.    Telephone:  (203) 740-2400
  255.    Fax:        (203) 775-5634
  256.  
  257. They've got a WATS number 1-800-374-6738 (that's 1-800-DR-INSET), but
  258. it probably isn't usable from Europe.
  259.  
  260. Joe Morris / MITRE
  261.  
  262. ------------------------------
  263.  
  264. Date: Thu,  11 Feb 93 8:33 +0200
  265. From: Simon Shickman <SIMON@vms.huji.ac.il>
  266. Subject: Looking for Windows 3.1 driver for Orchid Pro-Designer II
  267.  
  268. Two years ago, I installed a S-VGA card Orchid's Pro-Designer II.
  269. It came with Windows 3.0 drivers.  I'm looking for Window's 3.1 drivers.
  270. The local dealer does not work with Orchid anymore.
  271. Help please.
  272. Thank you.
  273. Simon.
  274. simon@vms.huji.ac.il
  275.  
  276. ------------------------------
  277.  
  278. Date: Sun, 14 Feb 93 22:46:16 CET
  279. From: "Me.Di.A. Srl" <MC2447@mclink.it>
  280. Subject: Modem Games
  281.  
  282. We are a group of cool hi-speed modem users.
  283. We are terribly tired about the shitty games that are circulating now.
  284. We desperately seek for <supercool> and hi-level challenging modem games (not on
  285. ly strategy).
  286. Would You please help us and suggest us which are and were to find the finest ga
  287. mes of this type?
  288. This will take you only few seconds and could be the beginning of a SUPER-Interc
  289. ontinental-Challenge with us.
  290. Please, don't leave us alone and throw us a "cable"!!!!!!
  291.  
  292.  
  293. ------------------------------
  294.  
  295. Date: Mon, 15 Feb 93 13:59:53 EST
  296. From: billbell@vnet.ibm.com
  297. Subject: MSCDEX
  298.  
  299. I have a BSR CD ROM from DAK and it didn't come with any CD ROM
  300. reference manual. I have noticed that the setup uses
  301. IRQs and I would rather use DMAs which I heard
  302. would not interrupt the system while doing I/O (also be faster).
  303. If you have any info (maybe I need to get a new driver) let me know.
  304.  
  305. ------------------------------
  306.  
  307. Date: Tue, 16 Feb 93 09:56:05 SLT
  308. From: "a.al-samarrai md" <F35G002%SAKSU00.bitnet@vmd.cso.uiuc.edu>
  309. Subject: nec intersect cdr-25  cd rom drive
  310.  
  311. This message was originally submitted by F35G002@SAKSU00 to the I-IBMPC list at
  312. UIUCVMD. If you simply forward it back to the list, it will be distributed with
  313. the paragraph you are now reading  being automatically removed. If you edit the
  314. contributions you receive into a digest, you will need to remove this paragraph
  315. before mailing the  results to the list. Finally, if  you need more information
  316. from the author of this message, you should be able to do so by simply replying
  317. to this note.
  318.  
  319. ------------------ Message requiring your approval (6 lines) ------------------
  320. dear all
  321. is the above nec cdr-25 cd rom drive HANDLE multimedia ?
  322. PC MAGAZIME REVIEW OF CDR-73 version is not..Dealer in Riyadh Claimed
  323. this version is support mutlimedia !
  324.  
  325.                       Thank you
  326.  
  327. ------------------------------
  328.  
  329. Date: Mon, 15 Feb 93 10:40:19 EDT
  330. From: Bill Blum <BASTILLE@GRIFFIN.UGA.EDU>
  331. Subject: Null modem cables ... RS232C connections/pinouts
  332.  
  333.  
  334.  
  335. Following is most the info you'll need to create your own cables .. enjoy
  336.  
  337. RS232  Communication Configuration
  338.  
  339.        __________________________                _____________
  340.        \  2 3 4 5 6 7 8         /                \ 1 2 3 4 5 /
  341.         \            20  22    /                  \ 6 7 8 9 /
  342.          \--------------------/                    \-------/
  343.  
  344.                IBM PC                          IBM AT
  345.        Pin  25-Pin Signal (DTE)         Pin  9-Pin Signal (DTE)
  346.  
  347.          1   Chassis Ground  (GND)      1   Carrier Detect (CD)
  348.          2   Transmit Data (TD)         2   Receive Data (RD)
  349.          3   Receive Data (RD)          3   Transmit Data (TD)
  350.          4   Request to Send (RTS)      4   Data Terminal Ready (DTR)
  351.          5   Clear to Send (CTS)        5   Signal Ground (SG)
  352.          6   Data Set Ready (DSR)       6   Data Set Ready (DSR)
  353.          7   Signal Ground (SG)         7   Request to Send (RTS)
  354.          8   Carrier Detect (CD)        8   Clear to Send (CTS)
  355.        9-19,21,23-25  (not used)        9   Ring Indicator (RI)
  356.         20   Data Terminal Ready (DTR)
  357.         22   Ring Indicator (RI)
  358.  
  359.          9   +Transmit Current Loop Return (20ma)/+ Voltage
  360.         10   -Transmit Current Loop Data (20ma)/- Voltage
  361.         11   NoCharge
  362.         12   2ndary Carrier Detect
  363.         13   2ndary CTS
  364.         14   2ndary TD
  365.         15   DCR Timing/DCE Transmit Signal Element Timing
  366.         16   2ndary RD
  367.         17   Receive Signal Element Timing
  368.         18   +Receive Current Loop Data (20ma)/NoCharge
  369.         19   2ndary RTS
  370.  
  371.         21   Signal Quality Detector
  372.  
  373.         23   Data Signal Rate Selector
  374.         24   DTE Timing/DTE Transmit Signal Element Timing
  375.         25   -Receive Current Loop Return (20ma)/NoCharge
  376.  
  377.  
  378.  Null Modem (should work for most applications - 25-DB connectors)
  379.  
  380.   1)  1 to 1, 7 to 7,   2 to 3, 3 to 2,  & 4, 5, 6, 20 are cut
  381.  
  382.   2)  7 to 7    2 to 3, 3 to 2
  383.       4, 5, 8 pinned together    6 & 20 pinned together
  384.  
  385.   3)  7 to 7    2 to 3, 3 to 2
  386.       4 & 5 pinned together      6, 8, 20 pinned together
  387.  
  388.  
  389.   Another null modem from 25 to 9 pin (that might work - gleaned from Vol 89
  390.    Issue 103 of IBMPC-Digest, about line 310) - using 4 wire telephone wire
  391.    25 pin         to      9 pin:
  392.       Yellow  2             Black   2
  393.       Black   3             Yellow  3
  394.       Red     7             Green   5
  395.       Green   8             Red     6
  396.  
  397.    There are two general cable configurations used with the RS-232C
  398.       Communications Standard:
  399.  
  400.       Data Terminal Equipment (DTE): IBM PC's, printers, plotters, etc
  401.       Data Communication Equipment (DCE): modems, multiplexors, etc
  402.  
  403.       DCE to DTE requires all lines run straight through
  404.       DTE to DTE usually requires swapping of the following lines:
  405.  
  406.       RD  and TD        RD  and TD
  407.       RTS and CTS  or   RTS,CTS and DCD
  408.       DTR and DSR       DCD and RTS,CTS
  409.  
  410.  
  411.        Signal Functions
  412.  
  413.  GND    Ground               protective safety ground
  414.  TD     Transmit Data        DTE output data
  415.  RD     Receive Data         DTE input data
  416.  RTS    Request To Send      DTE output, DTE would like to transmit
  417.  CTS    Clear To Send        DTE input, DCE is ready to transmit
  418.  DSR    Data Set Ready       DTE input, DCE is ready to communicate
  419.  SG     Signal Ground        provides a Zero reference voltage
  420.  DCD    Data Carrier Detect  DTE input, data link established, also
  421.                              known as Receive Line Signal Detect (RLSD)
  422.  DTR    Data Terminal Ready  DTE output, device ready
  423.  RI     Ring Indicator       DTE input, announces incoming call
  424.  
  425.  
  426.  - RTS/CTS is used for half duplex line turn around
  427.  - in half duplex DCD is asserted only by the receiving device
  428.  - full duplex modems tie CTS & DCD together (no CTS/RTS handshaking)
  429.  - most modems require DTR to be present to respond to commands
  430.  - maximum voltages are between -15 volts and +15 volts
  431.  - binary outputs are between +5 to +15 volts and -5 to -15 volts
  432.  - binary inputs are between +3 to +15 volts and -3 to -15 volts
  433.  - input voltages between -3 to +3 are undefined while output voltages
  434.    between -5 and +5 are undefined
  435.  - positive voltages indicate ON or SPACE, negative voltages indicate
  436.    OFF or MARK
  437.  
  438. ------------------------------
  439.  
  440. Date: Tue, 16 Feb 93 12:59:06 +0100
  441. From: Edwin Groothuis <S89405079@HSEPM1.HSE.NL>
  442. Subject: Problems with Nuvotel-modem
  443.  
  444.  
  445. Hi,
  446.  
  447. I'm the proud owner of a 14k4-modem, but I have some problems with it.
  448. The biggest problem is: My "old" fossildriver for FrontDoor (X00 v1.24) locks
  449. completly both modem and computer. I need to powerdown the computer before
  450. I can continue. Now I use BNU, but that slows down my computer too much
  451. to keep using it (lots of strange diskaccesses, slow screenwrites etc).
  452.  
  453. Does anyone know *a* solution for me?
  454.  
  455. Edwin
  456. ----------------------------------------------------------------------------
  457.  %   %   %   %   % %%%%% %%%%%     % %   %                   Edwin Groothuis
  458.  %% %%  % %  %   % %       %       % %   %            S8940509@hsepm1.hse.nl
  459.  % % %  STOP RACISM & INTOLERANCE! % %   %                Edwin@amiga.hse.nl
  460.  %   % %   %  % %  %       %   %   % %   % Edwin%storc@dutentb.et.tudelft.nl
  461.  %   % %   %   %   %%%%%   %    %%%   %%%                        2:284/205.1
  462. ----------------------------------------------------------------------------
  463.  
  464. ------------------------------
  465.  
  466. Date: Sun, 14 Feb 93 15:07:21 EST
  467. From: Asociacion Internacional de Escritores Policiacos
  468. Subject: RE! Date problem
  469.  
  470.  
  471.  
  472. Finally, and thanks to all persons who kindly answered me, I've
  473. solved the problem I had with the date/time in my now upgraded
  474. old xt with msdos 5.0.  My Acer 500+ actually served the msdos 3.30
  475. with the real time clock of the machine.  The date was ok for the
  476. system the manufacturer gave me, and also was good for any dos
  477. version before the 3.30, and I never found any command to reset or
  478. correct date/time in my config.sys or in my autoexec, and I couldn't
  479. find something like that among the utilities of my PC. I also know
  480. the 710 model, and there isn't anything to correct date/time.
  481. I followed your advise and found an utility to set my date/time.
  482. The name is today.exe, it works very well with my msdos 5.0, bot
  483. I don't know will it help any xt with the same problem.
  484. I've searched the ascii chains of this utility and I don't think
  485. it was specially made for Acer xt pc.  There is a comment, saying
  486. that you can use it for pc based on the 8088 CPU.
  487. Once again, thanks for your useful discussion of my date problems.
  488.  
  489.  Enrique Vasco
  490.  (aiep00@ceniai.cu / carlota@tinored.cu / Havana, Cuba)
  491.  
  492.  
  493. ------------------------------
  494.  
  495. Date: 22 Jan 93 01:00:34 CST
  496. From: "Mike Bitz"  <BITZM@columbia.dsu.edu>
  497. Subject: READ THIS!
  498.  
  499. This message was originally submitted  by BITZM@COLUMBIA.DSU.EDU to the I-IBMPC
  500. list  at UIUCVMD.  If  you simply  forward  it back  to the  list,  it will  be
  501. distributed with the paragraph you are now reading being automatically removed.
  502. If you  edit the  contributions you  receive into  a digest,  you will  need to
  503. remove this paragraph  before mailing the results to the  list. Finally, if you
  504. need more information from the author of this message, you should be able to do
  505. so by simply replying to this note.
  506.  
  507. ----------------- Message requiring your approval (21 lines) ------------------
  508.     Hello.  I am writing to inform you about a hot new discussion
  509. list.  So hot that we have 90+ members after only 1 week of operation.
  510.     PCBuild is a listserv devoted to the upgrading/construction/
  511. maintaining of Windows, OS/2, and DOS based computers.
  512.     We strongly urge you to join this list, as we are constantly
  513. looking for more members.  Without members, none of us can either
  514. share knowledge or learn new tips and tricks.
  515.     To become a member of this listserv, just send a message to:
  516.         LISTSERV@LIST.DSU.EDU
  517.     The first (and only) line in the message must read:
  518.         SUB PCBUILD Your Name
  519.  
  520.     Remember, once you are a member, you need not respond to every
  521. single posting.  But just think of the knowledge you will gain as one.
  522. Thanks for your time.
  523. Mike,
  524. Co Administrator of PCBuild.
  525.  
  526.  
  527.  
  528.  
  529.  
  530. ------------------------------
  531.  
  532. Date: Mon, 15 Feb 1993 14:56 GMT
  533. From: ENCE4201@civil.ucc.ie
  534. Subject: Request for info.
  535.  
  536. I am requesting information on facilities available, access to and relevant comm
  537.    ands on the available networks at this location. My area of interest is IBM-P
  538.    C, UNIX, AS400 and VAX/VMS systems.
  539.  
  540. Yours sincerely,
  541.   Martin Buckley
  542.  
  543. Department of Civil & Environmental Engineering,
  544. University College Cork, Ireland.
  545. Email: ENCE4201@civil.ucc.ie
  546.  
  547. ------------------------------
  548.  
  549. Date: Mon, 15 Feb 93 16:12:48 EST
  550. From: Usenet.News.System@CANTALOUPE.SRV.CS.CMU.EDU
  551.  
  552. Newsgroups: comp.sys.ibm.pc.digest
  553. Path: deadslug
  554. From: deadslug+@B.GP.CS.CMU.EDU (Richard Voyles)
  555. Subject: Cross-compiler for R3000
  556. Message-ID: <C2IDK3.KzB.2@cs.cmu.edu>
  557. Originator: deadslug@B.GP.CS.CMU.EDU
  558. Sender: news@cs.cmu.edu (Usenet News System)
  559. Nntp-Posting-Host: b.gp.cs.cmu.edu
  560. Organization: School of Computer Science, Carnegie Mellon
  561. Date: Mon, 15 Feb 1993 21:11:58 GMT
  562. Lines: 8
  563.  
  564. I'm trying to find out if there is a public domain cross-compiler
  565. for the IBM PC as host to a MIPS R3000 processor as target.
  566. I've heard the GNU C frontend for the R3000 has been ported to the PC but I
  567. don't know how to get a copy and I don't know if a cross-assembler
  568. exists in the public domain.  Any ideas where to find these beasts
  569. or a better newsgroup to post to?
  570.  
  571. Please reply to robodude@cmu.edu
  572.  
  573. ------------------------------
  574.  
  575. Date: Sun, 14 Feb 93 23:10:24 EST
  576. From: IQM139@URIACC.URI.EDU
  577.  
  578. G'day,
  579.   I am in dire need of HELP!  I recently purchased a CYRIX 40 Mhz math
  580. coprocessor.  It works wonders, does everything, except it is incredibly
  581. unstable in anything written for a 32bit extender.  I returned the first
  582. and the second is a little better, but it still does not work!  Is there
  583. anyone who can help me?
  584.                                         GOD, SAVE THE QUEEN!
  585.                                          MATT
  586.                                          iqm139@uriacc.uri.edu
  587.  
  588. ------------------------------
  589.  
  590. Date: Mon, 15 Feb 93 12:49:31 +1100
  591. From: junaid@yoyo.cc.monash.edu.au (Junaid Walker)
  592.  
  593. Newsgroups: aus.computers.ibm-pc,comp.sys.ibm.pc.misc,comp.sys.ibm.pc.digest
  594. Path: junaid
  595. From: junaid@yoyo.cc.monash.edu.au (Junaid Walker)
  596. Subject: >1M access in Real Mode (LOAD ALL, 386...)
  597. Message-ID: <junaid.1993.Feb15.124847@yoyo.cc.monash.edu.au>
  598. Organization: Monash University General Access Unix
  599. Date: Mon, 15 Feb 1993 01:48:50 GMT
  600. Lines: 24
  601.  
  602.         I am developing an application that needs to store over 1M of
  603. data.  It also needs quick random access to that data.
  604.         I vaguely remember reading something about the imfamous LOAD ALL
  605. command to access extended memory in real mode without doing a
  606. PR-RM switch.  Think it was Dr Dobb's or BYTE.  Anyone have any info on
  607. this command or pointers to info? (&info would be nice).
  608.         Also is a simular thing possible with the 32-bit addressing
  609. modes of the 386+?
  610.         How would one go about allocating this extended memory
  611. (presumably thru a XMS/int15 call) and recovering a 32-bit address of
  612. the allocated block?
  613.         Unfortunately I'm loath to write my program in Protected Mode.
  614. Too much of a love affair with BC++ i'm affraid (Hint, hint Borland,
  615. where are the flat-memory promised-lands comming?)
  616.  
  617.         I was thinking of using djgpp, as it compiles reasonably fast,
  618. but grimaced at the lack of debugging features.  Wonder what would
  619. happen if someone came up with a royalty free go32 extender replacement?
  620.  
  621.  
  622.         Thanks for any pointers (!=NULL)
  623.         Junaid
  624.  
  625.  
  626.  
  627. ------------------------------
  628.  
  629. Date: Tue, 16 Feb 93 11:54:55 EST
  630. From: IQM139@URIACC.URI.EDU
  631.  
  632. G'day,
  633.   I am having much trouble and I hope someone out there can help me.  I
  634. recently purchased a CYRIX math coprocessor.  It works great except when I use
  635. a 32 bit dos extender and then it crashes!  I tried exchanging the chip but
  636. nothing got better!  I don't know what to do!
  637.                                       A Friend In Need Is A Friend Indeed!
  638.                                            IQM139@uriacc.uri.edu
  639.                                            Matthew Newcomb
  640.  
  641. ------------------------------
  642.  
  643. End of Info-IBMPC Digest V93 #30
  644. ********************************
  645. -------
  646.