1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Added a todo list

git-svn-id: svn://svn.cc65.org/cc65/trunk@566 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-12-07 13:42:21 +00:00
parent 100196a5d4
commit a6682eaeec

View File

@ -34,6 +34,18 @@
# Things currently missing:
#
# - Scoping with .proc/.endproc
# - .global is ignored
# - .constructor/.destructor/.condes dito
# - .ignorecase is ignored, labels are always case sensitive
# - .include handling (difficult)
# - The global namespace operator ::
#
use strict 'vars';
use warnings;
@ -68,7 +80,7 @@ my $IndexPage = 0; # Create an index page
my $LinkStyle = 0; # Default link style
my $ReplaceExt = 0; # Replace extension instead of appending
my $TextColor = "#000000"; # Text color
my $Verbose = 0; # Be quiet
my $Verbose = 0; # Be quiet
# Table used to convert the label number into names
my @NameTab = ("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K",
@ -283,7 +295,7 @@ sub RefLabel {
#-----------------------------------------------------------------------------#
# Pass 1 #
# Pass 1 #
# ----------------------------------------------------------------------------#