From: cuz Date: Thu, 7 Dec 2000 13:42:21 +0000 (+0000) Subject: Added a todo list X-Git-Tag: V2.12.0~2976 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a6682eaeec1f489836e36128a58254f362f57568;p=cc65 Added a todo list git-svn-id: svn://svn.cc65.org/cc65/trunk@566 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ca65html/ca65html b/src/ca65html/ca65html index aabb072d4..c86e4b8af 100755 --- a/src/ca65html/ca65html +++ b/src/ca65html/ca65html @@ -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 # # ----------------------------------------------------------------------------#