1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-28 22:30:12 +00:00

Fixed a typo and removed reference to obsolete wprot segment type

git-svn-id: svn://svn.cc65.org/cc65/trunk@3654 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-11-20 13:18:59 +00:00
parent 840797d2d4
commit 47944aac55

View File

@ -490,8 +490,6 @@ specify a segment attribute. There are five possible segment attributes:
<tscreen><verb> <tscreen><verb>
ro means readonly ro means readonly
wprot same as ro but will be marked as write protected in
the VICE label file if -Lp is given
rw means read/write rw means read/write
bss means that this is an uninitialized segment bss means that this is an uninitialized segment
zp a zeropage segment zp a zeropage segment
@ -949,7 +947,7 @@ config files, you will need the following information.
<sect1>INIT<p> <sect1>INIT<p>
The INIT segment is used for initialization code that may be reused once The INIT segment is used for initialization code that may be reused once
executation reaches main() - provided that the program runs in RAM. You execution reaches main() - provided that the program runs in RAM. You
may for example add the INIT segment to the heap in really memory may for example add the INIT segment to the heap in really memory
constrained systems. constrained systems.