openbsd
27 years agoMake ddb variables long (for 64bit archs). from netbsd
niklas [Fri, 21 Mar 1997 00:41:17 +0000 (00:41 +0000)]
Make ddb variables long (for 64bit archs).  from netbsd

27 years agoNetBSD sync to sth like 970218
niklas [Fri, 21 Mar 1997 00:36:34 +0000 (00:36 +0000)]
NetBSD sync to sth like 970218

27 years agoAdd the bus_space_{read,write}_raw_multi_[248] extensions
niklas [Fri, 21 Mar 1997 00:16:32 +0000 (00:16 +0000)]
Add the bus_space_{read,write}_raw_multi_[248] extensions

27 years ago64-bit clean. if_ed.c now works on alpha.
niklas [Thu, 20 Mar 1997 23:59:58 +0000 (23:59 +0000)]
64-bit clean.  if_ed.c now works on alpha.

27 years agoupdate for adaptec support
chuck [Thu, 20 Mar 1997 22:03:45 +0000 (22:03 +0000)]
update for adaptec support

27 years agoMAJOR CHANGES: [contributed by Chuck Cranor <chuck@ccrc.wustl.edu> and
chuck [Thu, 20 Mar 1997 22:03:03 +0000 (22:03 +0000)]
MAJOR CHANGES: [contributed by Chuck Cranor <chuck@ccrc.wustl.edu> and
                Anne Hutton <hutton@isi.edu>]:
   - add support for Adaptec 155 PCI ATM cards (e.g. ANA-5940)
          - add sc->is_adaptec to handle differences between cards.
          - break out MID_MK_TXQ/MID_MK_RXQ seperate macros to handle
                  the new Adaptec format TXQ/RXQ.
          - adjust en_dqneed to return 1 on ADP (since the Adaptec can
                  DMA anything in one DRQ/DTQ!)
          - add hook for a bus specific reset function (adaptec has
                  a seperate reset register that needs to be hit when
                  resettting the midway).
          - adjust DMA test to not worry about burst sizes on the
                  adaptec (since it handles it all for us!) and to handle
                  the new DTQ/DRQ format.
          - add Adaptec DMA support to en_txlaunch() and en_service()

BUG FIXES:
   - fixed receiver panic under heavy load ("lost mbuf in slot 0!").
          when the reassembly buffer overflows, the T-bit is set in
          the RDB and the data field is empty.  en_service() sets up
          a 4-byte (RDB size) dummy DMA without IF_ENQUEUE.  but the
          recv intr handling in en_intr() always does IF_DEQUEUE.
          as a result, a successive recv intr loses its mbuf and
          leads to a panic.  the solution is to only IF_DEQUEUE if
          the interrupt has non-zero length (indicating that there
          is an mbuf to get).   in order for this to work, EN_DQ_MK
          must always be non-zero.   we do this by or'ing in an unused
          bit (0x80000).
                  reported by: Kenjiro Cho <kjc@csl.sony.co.jp>

   - fix setting of transmit channel when txspeed[] is non-zero
          (e.g. traffic shaping).    the old scheme didn't work
          properly (it allowed the same VCI to use multiple tx channels
          thus defeating the txspeed[] parameter).   the new scheme
          statically assigns a VC to a channel when txspeed[] is set.
          [note that the code to set txspeed[] isn't in the driver right
          now since a MI interface to do this hasn't been made yet]
          we add sc->txvc2slot[] and sc->txslot[n].nref for this.
                  reported by: Kenjiro Cho <kjc@csl.sony.co.jp>,
                                  Milind M Buddihikot <milind@ccrc.wustl.edu>,
                                  Dong Lin <dong@eecs.harvard.edu>

    - if aal5 frame has a CRC error then the length field in the aal5 trailer
          may not be valid, so we can not use it [and we must dump the frame]
                  contributed by: Yuhang Sun <sunyh@dworkin.wustl.edu> & chuck

   - when doing SRAM copies, be sure to round up the length to the next
          largest word (otherwise the driver will try to do a byte clean
          up DMA and then get an ID error interrupt).

MINOR CLEANUPS:
   - add some extra support for a few more versions of FreeBSD
                  contributed by: Kenjiro Cho <kjc@csl.sony.co.jp>

   - clean up loops in DMA test
                  contributed by: Kenjiro Cho <kjc@csl.sony.co.jp>

   - restructure and cleanup of en_read/en_write macros/inlines

   - clean up some byte ordering stuff so that we are consistant throughout
          the driver

27 years agoregen
chuck [Thu, 20 Mar 1997 20:31:58 +0000 (20:31 +0000)]
regen

27 years ago - add Adaptec ATM ID's (0x5900, 0x5905). still trying to find out how they
chuck [Thu, 20 Mar 1997 20:29:55 +0000 (20:29 +0000)]
 - add Adaptec ATM ID's (0x5900, 0x5905).   still trying to find out how they
        correspond to the ANA numbers...  certainly includes ANA-5940.
 - add Efficient Nets product 0x0000.  according to linux pci.h
        the 0x0000 is an FPGA version of the midway card and the 0x0002
        is the ASIC version.

27 years agouse ${COMPILE.c} even for the custom build
niklas [Thu, 20 Mar 1997 19:10:20 +0000 (19:10 +0000)]
use ${COMPILE.c} even for the custom build

27 years agoReference include directly to avoid $CDPATH clashes.
downsj [Thu, 20 Mar 1997 11:32:02 +0000 (11:32 +0000)]
Reference include directly to avoid $CDPATH clashes.

27 years agoFixed minor bug with next/prev/replay commands.
angelos [Wed, 19 Mar 1997 03:21:49 +0000 (03:21 +0000)]
Fixed minor bug with next/prev/replay commands.

27 years agoAdded ${DESTDIR} in -I/usr/include/kerberosIV. -moj
maja [Tue, 18 Mar 1997 20:48:46 +0000 (20:48 +0000)]
Added ${DESTDIR} in -I/usr/include/kerberosIV. -moj

27 years agofix a memory-leak problem in MDXEnd -- even when given
flipk [Tue, 18 Mar 1997 06:36:51 +0000 (06:36 +0000)]
fix a memory-leak problem in MDXEnd -- even when given
a non-NULL buffer, MDXEnd would go ahead and malloc a new one anyway.

27 years agoBad idea to reset mac68k_vidphys/videorowbytes here.
briggs [Tue, 18 Mar 1997 05:54:01 +0000 (05:54 +0000)]
Bad idea to reset mac68k_vidphys/videorowbytes here.

27 years agoHandle DAFB better. Only configure if we think a monitor is attached and
briggs [Tue, 18 Mar 1997 05:37:50 +0000 (05:37 +0000)]
Handle DAFB better.  Only configure if we think a monitor is attached and
disable interrupts from the bloody card in any case.  Also snag video
address and rowbytes from the controller, too, just for fun.

27 years agoAdd bus handle and bus tag to grfbus_softc.
briggs [Tue, 18 Mar 1997 05:35:24 +0000 (05:35 +0000)]
Add bus handle and bus tag to grfbus_softc.

27 years agoIntegrate local changes
tholo [Tue, 18 Mar 1997 02:09:39 +0000 (02:09 +0000)]
Integrate local changes

27 years agoFiles missed from previous import
tholo [Tue, 18 Mar 1997 02:05:33 +0000 (02:05 +0000)]
Files missed from previous import

27 years agoNew release from Cyclic Software
tholo [Tue, 18 Mar 1997 01:54:58 +0000 (01:54 +0000)]
New release from Cyclic Software

27 years agoFrom Scott Reynolds <scottr@netbsd.org> (, but compilable ;-)
briggs [Tue, 18 Mar 1997 01:02:50 +0000 (01:02 +0000)]
From Scott Reynolds <scottr@netbsd.org> (, but compilable ;-)
Some cards we identify as InterLAN cards do not seem to have the MAC
address in the configuration ROM.  For these, fall back to the old
method if we can't find the expected sResource record.

27 years agoDon't consider an account disabled just because the password length != 13.
gene [Mon, 17 Mar 1997 20:17:57 +0000 (20:17 +0000)]
Don't consider an account disabled just because the password length != 13.
Also, take into account users w/ the blowfish cypher.

27 years agoRemoved static specifiers. Align bpf headers on sizeof(long) boundaries
niklas [Mon, 17 Mar 1997 16:29:37 +0000 (16:29 +0000)]
Removed static specifiers.  Align bpf headers on sizeof(long) boundaries
as it begins with a timeval struct.  This fixes the alpha bpf panics.
Removed double prototypes.  Reordered includes.  The last change came from
NetBSD.  Updated $NetBSD$ tags.  Slight KNF too.

27 years agoFlip around Takeshi Yanagisawa's name. Add back a physaccess() call that I was a...
briggs [Mon, 17 Mar 1997 13:09:05 +0000 (13:09 +0000)]
Flip around Takeshi Yanagisawa's name.  Add back a physaccess() call that I was a bit hasty
in removing.

27 years ago*Blush* It's Denton, not Dennis, Gentry.
briggs [Mon, 17 Mar 1997 12:20:22 +0000 (12:20 +0000)]
*Blush*  It's Denton, not Dennis, Gentry.

27 years agoSerial console trouble again...
pefo [Mon, 17 Mar 1997 08:11:11 +0000 (08:11 +0000)]
Serial console trouble again...

27 years agoFix typo.
briggs [Mon, 17 Mar 1997 04:26:15 +0000 (04:26 +0000)]
Fix typo.

27 years agoA couple of cleanup items suggested by is@netbsd.org.
briggs [Mon, 17 Mar 1997 04:16:59 +0000 (04:16 +0000)]
A couple of cleanup items suggested by is@netbsd.org.

27 years agoIntegrate a couple of changes suggested by Scott Reynolds and Takeshi Yanagisawa.
briggs [Mon, 17 Mar 1997 04:04:32 +0000 (04:04 +0000)]
Integrate a couple of changes suggested by Scott Reynolds and Takeshi Yanagisawa.

27 years agoAdded NetBSD fix for overflow. Probably not exploitable because it's a static.
bitblt [Sun, 16 Mar 1997 22:15:20 +0000 (22:15 +0000)]
Added NetBSD fix for overflow.  Probably not exploitable because it's a static.

27 years agoSlight rearrangement, addition of ROMP values.
downsj [Sun, 16 Mar 1997 02:54:19 +0000 (02:54 +0000)]
Slight rearrangement, addition of ROMP values.

27 years agoallow settimeofday() at securelevel < 2, rather than < 1.
flipk [Sun, 16 Mar 1997 01:18:48 +0000 (01:18 +0000)]
allow settimeofday() at securelevel < 2, rather than < 1.
the consensus was that it was too annoying to not be able to change
the clock at securelevel == 1.

27 years agores_close is defined in a macro and should apperently not be used as _res_close.
pefo [Sat, 15 Mar 1997 21:53:50 +0000 (21:53 +0000)]
res_close is defined in a macro and should apperently not be used as _res_close.

27 years agoremove space from tsleep() message
kstailey [Sat, 15 Mar 1997 17:18:07 +0000 (17:18 +0000)]
remove space from tsleep() message

27 years agoAV macs don't have SONIC, they have MACE, and 040 PBs do have SONIC.
briggs [Sat, 15 Mar 1997 05:51:15 +0000 (05:51 +0000)]
AV macs don't have SONIC, they have MACE, and 040 PBs do have SONIC.

27 years agoFix so yppush will err out if it can't find the ypservers map. This whole
gene [Sat, 15 Mar 1997 00:08:58 +0000 (00:08 +0000)]
Fix so yppush will err out if it can't find the ypservers map.  This whole
code wants lots of attention, but at least it won't dump core on a virgin
installation now.

27 years agoAdd missing line, doh!
millert [Fri, 14 Mar 1997 23:25:46 +0000 (23:25 +0000)]
Add missing line, doh!

27 years agoUpdate from 4.4BSD-lite2
millert [Fri, 14 Mar 1997 20:44:55 +0000 (20:44 +0000)]
Update from 4.4BSD-lite2

27 years agoadd an empty frame.h so that there is one (just like on the arc)
graichen [Fri, 14 Mar 1997 18:11:07 +0000 (18:11 +0000)]
add an empty frame.h so that there is one (just like on the arc)

27 years agoPossible fix for SE/30 internal video problems. Thanks to Denny Gentry for
briggs [Fri, 14 Mar 1997 14:16:52 +0000 (14:16 +0000)]
Possible fix for SE/30 internal video problems.  Thanks to Denny Gentry for
figuring out what was going wrong there.

27 years agoUse macro to truncate page.
briggs [Fri, 14 Mar 1997 14:15:22 +0000 (14:15 +0000)]
Use macro to truncate page.

27 years agoUpdates from Yanagisawa and Denny. This seems to work.
briggs [Fri, 14 Mar 1997 14:11:34 +0000 (14:11 +0000)]
Updates from Yanagisawa and Denny.  This seems to work.

27 years agoCorrect usage of S_IFREG.
millert [Fri, 14 Mar 1997 05:40:20 +0000 (05:40 +0000)]
Correct usage of S_IFREG.

27 years agoFix problem where tty mode could get clobbered when ftp was suspended.
millert [Fri, 14 Mar 1997 05:36:02 +0000 (05:36 +0000)]
Fix problem where tty mode could get clobbered when ftp was suspended.
Call el_parse() to catch editrc(5) commands if the command is not known
to ftp.  Thorsten did all the real work for this :-)

27 years agofix el_source() - a block needed braces around it (from NetBSD)
millert [Fri, 14 Mar 1997 05:12:41 +0000 (05:12 +0000)]
fix el_source() - a block needed braces around it (from NetBSD)
Some strcpy() -> strncpy (from NetBSD)
Some KNF
Add current NetBSD tags

27 years agoChange an occurrence of if (fromatty) -> if (edit) -- from Thorsten.
millert [Fri, 14 Mar 1997 05:03:45 +0000 (05:03 +0000)]
Change an occurrence of if (fromatty) -> if (edit) -- from Thorsten.

27 years agoSync with NetBSD and fix "get foo.txt /dev/tty" wrt progress meter
millert [Fri, 14 Mar 1997 04:32:12 +0000 (04:32 +0000)]
Sync with NetBSD and fix "get foo.txt /dev/tty" wrt progress meter
and setting times.

27 years agoIterate over signals correctly
tholo [Fri, 14 Mar 1997 04:15:38 +0000 (04:15 +0000)]
Iterate over signals correctly

27 years agoSwitch to linking with the resolver in libc.
downsj [Fri, 14 Mar 1997 03:40:30 +0000 (03:40 +0000)]
Switch to linking with the resolver in libc.

Pull a few of our changes into this resolver; don't delete it yet.  I'm
not entirely sure it should be deleted, simply because of the baseline
it provides against our massivelt modified libc resolver.

27 years ago./usr/include/g++ not ./include/g++
etheisen [Fri, 14 Mar 1997 02:12:35 +0000 (02:12 +0000)]
./usr/include/g++ not ./include/g++

27 years agoBIND 4.9.5 includes.
downsj [Thu, 13 Mar 1997 19:11:49 +0000 (19:11 +0000)]
BIND 4.9.5 includes.

27 years agoIntegrate BIND 4.9.5 resolver and associated routines.
downsj [Thu, 13 Mar 1997 19:07:19 +0000 (19:07 +0000)]
Integrate BIND 4.9.5 resolver and associated routines.

Includes the DNS aware getnetby*() routines and IPv6 support.

27 years agoCopy the scanner_type from the quirkdata to the sio for userland to see.
kstailey [Thu, 13 Mar 1997 12:22:37 +0000 (12:22 +0000)]
Copy the scanner_type from the quirkdata to the sio for userland to see.

27 years agoAdd scanner_type and compute_sizes() to quirks.
kstailey [Thu, 13 Mar 1997 12:19:59 +0000 (12:19 +0000)]
Add scanner_type and compute_sizes() to quirks.
Adjust attach() messages for scanners with quirk table entries.

27 years agoAdd support for secure maps and master.passwd. -moj
maja [Thu, 13 Mar 1997 09:50:26 +0000 (09:50 +0000)]
Add support for secure maps and passwd. -moj

27 years agoThis isn't a linux distribution.
downsj [Thu, 13 Mar 1997 09:40:06 +0000 (09:40 +0000)]
This isn't a linux distribution.

27 years agoNo dynamic loading on vax. -moj
maja [Thu, 13 Mar 1997 09:39:52 +0000 (09:39 +0000)]
No dynamic loading on vax. -moj

27 years agoDo obj dir correctly.
downsj [Thu, 13 Mar 1997 08:57:57 +0000 (08:57 +0000)]
Do obj dir correctly.

27 years agoUMAX SuperVista S-12 also needs a NOLUNS quirk.
briggs [Thu, 13 Mar 1997 05:30:02 +0000 (05:30 +0000)]
UMAX SuperVista S-12 also needs a NOLUNS quirk.

27 years agoFix a conflict.
briggs [Wed, 12 Mar 1997 22:51:42 +0000 (22:51 +0000)]
Fix a conflict.

27 years agoThe stupid "use console before configured" scheeme strikes again :-)
pefo [Wed, 12 Mar 1997 20:17:37 +0000 (20:17 +0000)]
The stupid "use console before configured" scheeme strikes again :-)

27 years agoNeed this for arc/pci...
pefo [Wed, 12 Mar 1997 20:13:01 +0000 (20:13 +0000)]
Need this for arc/pci...

27 years agoMips ARC systems (hmmm..) can also have PCI buses...
pefo [Wed, 12 Mar 1997 19:52:56 +0000 (19:52 +0000)]
Mips ARC systems (hmmm..) can also have PCI buses...

27 years agoAdd a define for another compatible chip.
pefo [Wed, 12 Mar 1997 19:51:33 +0000 (19:51 +0000)]
Add a define for another compatible chip.

27 years agoAddition of support for a PCI based Vr4300 board from Algorithmics, the P-4032.
pefo [Wed, 12 Mar 1997 19:16:33 +0000 (19:16 +0000)]
Addition of support for a PCI based Vr4300 board from Algorithmics, the P-4032.
Changes to io macros were done to handle sparse bus addressing dynamically.
This is a first cut (rough).

27 years agoAdd options LKM.
briggs [Wed, 12 Mar 1997 15:59:01 +0000 (15:59 +0000)]
Add options LKM.

27 years agoI'm much too tired.
downsj [Wed, 12 Mar 1997 14:54:15 +0000 (14:54 +0000)]
I'm much too tired.

27 years agoRemove %INDOT%.
downsj [Wed, 12 Mar 1997 14:51:57 +0000 (14:51 +0000)]
Remove %INDOT%.

27 years agoRemove some more warnings left over from NetBSD's new config.
briggs [Wed, 12 Mar 1997 13:36:56 +0000 (13:36 +0000)]
Remove some more warnings left over from NetBSD's new config.

27 years agoRemove reference to obsolete SONICSPACE.
briggs [Wed, 12 Mar 1997 13:34:23 +0000 (13:34 +0000)]
Remove reference to obsolete SONICSPACE.

27 years agoMove AF_SIP and put AF_INET6 in the same location as BSD/OS.
downsj [Wed, 12 Mar 1997 13:30:42 +0000 (13:30 +0000)]
Move AF_SIP and put AF_INET6 in the same location as BSD/OS.

I couldn't find any use of AF_SIP in the kernel, didn't check user land.

27 years agoMove prototype for physaccess.
briggs [Wed, 12 Mar 1997 13:29:38 +0000 (13:29 +0000)]
Move prototype for physaccess.

27 years agoFix for bizarre internal framebuffers that don't start on page boundaries.
briggs [Wed, 12 Mar 1997 13:26:37 +0000 (13:26 +0000)]
Fix for bizarre internal framebuffers that don't start on page boundaries.
Dave Huang found this one...

27 years agoNew sn arrangements.
briggs [Wed, 12 Mar 1997 13:24:15 +0000 (13:24 +0000)]
New sn arrangements.

27 years agoBring in some fresh SONIC code from Dennis Gentry and Yanagisawa Takeshi.
briggs [Wed, 12 Mar 1997 13:20:31 +0000 (13:20 +0000)]
Bring in some fresh SONIC code from Dennis Gentry and Yanagisawa Takeshi.
Much hacked by me to merge and partially busify.
Add code that I lost a while back for digging the proper mac address for
internal ethernet.
Still needs work, but checkpointed--works at least as well as the last
version.

27 years agocleanup.
briggs [Wed, 12 Mar 1997 13:15:58 +0000 (13:15 +0000)]
cleanup.

27 years agoFix rcsid.
downsj [Wed, 12 Mar 1997 11:32:30 +0000 (11:32 +0000)]
Fix rcsid.

27 years agoAdd the rest of the 4.9.5 tools.
downsj [Wed, 12 Mar 1997 11:30:34 +0000 (11:30 +0000)]
Add the rest of the 4.9.5 tools.

27 years agoRepair rcsids.
downsj [Wed, 12 Mar 1997 11:21:14 +0000 (11:21 +0000)]
Repair rcsids.

27 years agoCruft.
downsj [Wed, 12 Mar 1997 11:08:48 +0000 (11:08 +0000)]
Cruft.

27 years agoBIND 4.9.5-P1.
downsj [Wed, 12 Mar 1997 10:41:45 +0000 (10:41 +0000)]
BIND 4.9.5-P1.

libresolv and include are required until the new resolver gets integrated
into libc.

27 years agoSecond parameter of *match functions should be void (thank you ISA bus) and
gene [Tue, 11 Mar 1997 21:03:02 +0000 (21:03 +0000)]
Second parameter of *match functions should be void (thank you ISA bus) and
*stop functions return int's under OpenBSD.  This cleans up a
bunch of compile-time warnings for the mac68k.

27 years agoDo not build GNU cpio
tholo [Tue, 11 Mar 1997 18:53:30 +0000 (18:53 +0000)]
Do not build GNU cpio

27 years agoUse pax(1) for cpio(1) emulation
tholo [Tue, 11 Mar 1997 18:50:56 +0000 (18:50 +0000)]
Use pax(1) for cpio(1) emulation

27 years agomore about disconnect
kstailey [Tue, 11 Mar 1997 15:46:01 +0000 (15:46 +0000)]
more about disconnect

27 years agoadjust comments
kstailey [Tue, 11 Mar 1997 12:06:48 +0000 (12:06 +0000)]
adjust comments

27 years agosync
downsj [Tue, 11 Mar 1997 09:54:09 +0000 (09:54 +0000)]
sync

27 years agoNow with support for "secure" maps a'la FreeBSD. Support exists in makedbm
maja [Tue, 11 Mar 1997 09:12:25 +0000 (09:12 +0000)]
Now with support for "secure" maps a'la FreeBSD. Support exists in makedbm
and ypxfrd since dawn of time. Support is missing in YP-makefile and in
libc. I have the changes for YP-makefile to support master.passwd but since
the support is missing in libc I will not commit them yet. -moj

27 years agoAdded GENERIC_SCSI2 scanner type.
kstailey [Tue, 11 Mar 1997 04:00:15 +0000 (04:00 +0000)]
Added GENERIC_SCSI2 scanner type.

27 years agoadded GENERIC_SCSI2
kstailey [Tue, 11 Mar 1997 03:53:55 +0000 (03:53 +0000)]
added GENERIC_SCSI2

27 years agomove init. code to m.i. section
kstailey [Tue, 11 Mar 1997 03:40:49 +0000 (03:40 +0000)]
move init. code to m.i. section

27 years agothe PINT scanner utilities for now
kstailey [Tue, 11 Mar 1997 03:23:10 +0000 (03:23 +0000)]
the PINT scanner utilities for now

27 years agoadded whitespace.
kstailey [Tue, 11 Mar 1997 03:19:16 +0000 (03:19 +0000)]
added whitespace.

27 years agoAdded notes about how to use the driver.
kstailey [Tue, 11 Mar 1997 02:34:25 +0000 (02:34 +0000)]
Added notes about how to use the driver.

27 years agoAdd comment about generic trigger missing.
kstailey [Tue, 11 Mar 1997 00:45:19 +0000 (00:45 +0000)]
Add comment about generic trigger missing.

27 years agoInclude macinfo.h and more synch'ing with our mi sbc code. This makes it
gene [Mon, 10 Mar 1997 05:06:42 +0000 (05:06 +0000)]
Include macinfo.h and more synch'ing with our mi sbc code.  This makes it
actually compile.

27 years agoAllow noaccesstime as a synonym for noatime.
millert [Mon, 10 Mar 1997 04:27:41 +0000 (04:27 +0000)]
Allow noaccesstime as a synonym for noatime.

27 years agoDo not increase buffer bp->b_bcount in get_buffer_status().
kstailey [Mon, 10 Mar 1997 03:20:30 +0000 (03:20 +0000)]
Do not increase buffer bp->b_bcount in get_buffer_status().

27 years agoSCSI 2 scanners use READ_BIG not READ
kstailey [Mon, 10 Mar 1997 02:34:42 +0000 (02:34 +0000)]
SCSI 2 scanners use READ_BIG not READ

27 years agodo GET_BUFFER_STATUS in special minphys
kstailey [Mon, 10 Mar 1997 02:29:39 +0000 (02:29 +0000)]
do GET_BUFFER_STATUS in special minphys

27 years agostuff about halftone
kstailey [Mon, 10 Mar 1997 02:28:46 +0000 (02:28 +0000)]
stuff about halftone