From b92630142fbbbedd6588f44f8653585dc1e3d19c Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Sun, 30 Mar 2014 22:10:37 +0200 Subject: [PATCH] Harmonized usage of "KB" and "cc65". --- doc/atmos.sgml | 2 +- doc/c128.sgml | 8 ++++---- doc/c64.sgml | 2 +- doc/cbm510.sgml | 2 +- doc/pet.sgml | 2 +- doc/vic20.sgml | 2 +- testcode/lib/exec-test1.c | 2 +- testcode/lib/exec-test2.c | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/atmos.sgml b/doc/atmos.sgml index 921b11645..86f6b1154 100644 --- a/doc/atmos.sgml +++ b/doc/atmos.sgml @@ -2,7 +2,7 @@
-Oric Atmos-specific information for CC65 +<title>Oric Atmos-specific information for cc65 <author>Ullrich von Bassewitz <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"><newline> Stefan A. Haubenthal <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"><newline> <url url="mailto:greg.king5@verizon.net" name="Greg King"> diff --git a/doc/c128.sgml b/doc/c128.sgml index ae48ea514..a51767e69 100644 --- a/doc/c128.sgml +++ b/doc/c128.sgml @@ -2,7 +2,7 @@ <article> -<title>Commodore 128-specific information for CC65 +<title>Commodore 128-specific information for cc65 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"> <date>2014-03-24 @@ -180,7 +180,7 @@ memory drivers using the VDC memory! This driver was written by Maciej Witkowiak. This driver uses the 80-column display, and features a resolution of 640*480 with two colors and an adjustable palette (that means that the two colors can be chosen out of the - 16 VDC colors). The driver requires 64KiB VDC RAM. + 16 VDC colors). The driver requires 64KB VDC RAM. </descrip><p> Note: The colors are translated from definitions in headers to correct VDC values; @@ -214,13 +214,13 @@ missing on VDC, and are translated to the two colors missing from the VIC palett <tag><tt/c128-reu.emd (c128_reu_emd)/</tag> A driver for the CBM REUs. The driver will determine from the connected REU - if it supports 128KiB of RAM or more. In the latter case, 256KiB are assumed, + if it supports 128KB of RAM or more. In the latter case, 256KB are assumed, but since there are no range checks, the application can use more memory if it has better knowledge about the hardware than the driver. <tag><tt/c128-vdc.emd (c128_vdc_emd)/</tag> A driver for the VDC memory of the C128, written and contributed by Maciej - Witkowiak. Autodetects the amount of memory available (16 or 64Ki), and offers + Witkowiak. Autodetects the amount of memory available (16 or 64K), and offers 64 or 256 pages of 256 bytes each. Note: This driver is incompatible with any of the graphics drivers using the VDC! diff --git a/doc/c64.sgml b/doc/c64.sgml index c324fbea0..2883ce79e 100644 --- a/doc/c64.sgml +++ b/doc/c64.sgml @@ -2,7 +2,7 @@ <article> -<title>Commodore 64-specific information for CC65 +<title>Commodore 64-specific information for cc65 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"> <date>2014-03-24 diff --git a/doc/cbm510.sgml b/doc/cbm510.sgml index e70571135..f0e03c28b 100644 --- a/doc/cbm510.sgml +++ b/doc/cbm510.sgml @@ -2,7 +2,7 @@ <article> -<title>Commodore 510 (aka P500) specific information for CC65 +<title>Commodore 510 (aka P500) specific information for cc65 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"><newline> Stefan A. Haubenthal, <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"><newline> <url url="mailto:greg.king5@verizon.net" name="Greg King"> diff --git a/doc/pet.sgml b/doc/pet.sgml index 3c282a413..b0fa0e1e8 100644 --- a/doc/pet.sgml +++ b/doc/pet.sgml @@ -2,7 +2,7 @@ <article> -<title>Commodore PET-specific information for CC65 +<title>Commodore PET-specific information for cc65 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"><newline> Stefan A. Haubenthal, <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"> <date>2014-03-26 diff --git a/doc/vic20.sgml b/doc/vic20.sgml index 1044b7b23..f02bd63d9 100644 --- a/doc/vic20.sgml +++ b/doc/vic20.sgml @@ -2,7 +2,7 @@ <article> -<title>Commodore VIC20 (aka VC20) specific information for CC65 +<title>Commodore VIC20 (aka VC20) specific information for cc65 <author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"><newline> Stefan A. Haubenthal, <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"> <date>2014-03-26 diff --git a/testcode/lib/exec-test1.c b/testcode/lib/exec-test1.c index e2548fb0a..ea74ee60a 100644 --- a/testcode/lib/exec-test1.c +++ b/testcode/lib/exec-test1.c @@ -1,5 +1,5 @@ /* -** These programs test CC65's exec() program-chaining function. +** These programs test cc65's exec() program-chaining function. ** exec-test1 runs exec-test2 -- that tests the loading and starting of another ** program. Then, exec-test2 runs arg-test -- that tests command-line argument ** passing. diff --git a/testcode/lib/exec-test2.c b/testcode/lib/exec-test2.c index e6c844a8e..a0aa82a3f 100644 --- a/testcode/lib/exec-test2.c +++ b/testcode/lib/exec-test2.c @@ -1,5 +1,5 @@ /* -** These programs test CC65's exec() program-chaining function. +** These programs test cc65's exec() program-chaining function. ** exec-test1 runs exec-test2 -- that tests the loading and starting of another ** program. Then, exec-test2 runs arg-test -- that tests command-line argument ** passing.