1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-26 08:32:00 +00:00

Added CBM510 in a few places

git-svn-id: svn://svn.cc65.org/cc65/trunk@1075 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-10-24 21:56:52 +00:00
parent be1abb7ec2
commit e15f01a882

View File

@ -152,8 +152,8 @@ The header files contain
accesses. accesses.
<item>Other routines that make only sense for a specific system. One example <item>Other routines that make only sense for a specific system. One example
are routines to write memory locations in the system bank for the CBM are routines to write memory locations in the system bank for the CBM PET-II
600/700 family (called B128/B256 in the US). family.
</itemize> </itemize>
@ -165,12 +165,13 @@ and keyboard I/O. The functions will write directly to the screen or poll the
keyboard directly with no more help from the operating system than needed. keyboard directly with no more help from the operating system than needed.
This has some disadvantages, but on the other side it's fast and reasonably This has some disadvantages, but on the other side it's fast and reasonably
portable. conio implementations exist for the following targets: portable. conio implementations exist for the following targets:
<itemize> <itemize>
<item>atari <item>atari
<item>c64 <item>c64
<item>c128 <item>c128
<item>plus4 <item>plus4
<item>cbm510 (40 column video)
<item>cbm610 (all CBM series-II computers with 80 column video) <item>cbm610 (all CBM series-II computers with 80 column video)
<item>pet (all CBM PET systems except the 2001) <item>pet (all CBM PET systems except the 2001)
<item>apple2 <item>apple2
@ -199,6 +200,7 @@ the following targets:
<item>atari <item>atari
<item>c64 <item>c64
<item>c128 <item>c128
<item>cbm510
</itemize> </itemize>
The available functions are declared in <tt/mouse.h/ To help writing portable The available functions are declared in <tt/mouse.h/ To help writing portable