From 66bdac507983eeed701f92023d36cad1f22319e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Wed, 8 Jan 2020 14:38:29 -0800 Subject: [PATCH 01/19] fixed IFDEF/IFNDEF, added partial support for CA65 style SCOPE, fixed -endm style macro parsing. --- sln/dump_x65/dump_x65.vcxproj | 10 +- sln/x65.vcxproj | 8 +- test/Test65816_OpCodes.s | 2 +- test/ca65directive.s | 62 ++++++++ test/unittest.bat | 10 ++ x65.cpp | 274 ++++++++++++++++++++-------------- 6 files changed, 242 insertions(+), 124 deletions(-) create mode 100644 test/ca65directive.s diff --git a/sln/dump_x65/dump_x65.vcxproj b/sln/dump_x65/dump_x65.vcxproj index af24e18..996b984 100644 --- a/sln/dump_x65/dump_x65.vcxproj +++ b/sln/dump_x65/dump_x65.vcxproj @@ -23,32 +23,32 @@ {57EFF4A4-7BF2-43F0-AD62-A79092DA67D1} Win32Proj dump_x65 - 10.0.16299.0 + 10.0.15063.0 Application true - v140 + v141 NotSet Application false - v140 + v141 true NotSet Application true - v140 + v141 NotSet Application false - v140 + v141 true NotSet diff --git a/sln/x65.vcxproj b/sln/x65.vcxproj index 7cced22..5568169 100644 --- a/sln/x65.vcxproj +++ b/sln/x65.vcxproj @@ -29,26 +29,26 @@ Application true - v140 + v141 NotSet Application false - v140 + v141 true NotSet Application true - v140 + v141 NotSet Application false - v140 + v141 true NotSet diff --git a/test/Test65816_OpCodes.s b/test/Test65816_OpCodes.s index f924b11..2cd242e 100644 --- a/test/Test65816_OpCodes.s +++ b/test/Test65816_OpCodes.s @@ -278,7 +278,7 @@ TestOpcodes: mvp $21,$20 mvn $21,$20 pea $2120 - pei ($21) + pei $21 per $2120 rep $21 rep #$21 diff --git a/test/ca65directive.s b/test/ca65directive.s new file mode 100644 index 0000000..6d3974e --- /dev/null +++ b/test/ca65directive.s @@ -0,0 +1,62 @@ +; TEST CODE FROM EXOMIZER + +.org $2000 + +zp_len_lo = $a7 +zp_len_hi = $a8 + +zp_src_lo = $ae +zp_src_hi = zp_src_lo + 1 + +zp_bits_hi = $fc + +zp_bitbuf = $fd +zp_dest_lo = zp_bitbuf + 1 ; dest addr lo +zp_dest_hi = zp_bitbuf + 2 ; dest addr hi + +.MACRO mac_refill_bits + pha + jsr get_crunched_byte + rol + sta zp_bitbuf + pla +.ENDMACRO +.MACRO mac_get_bits +.SCOPE + adc #$80 ; needs c=0, affects v + asl + bpl gb_skip +gb_next: + asl zp_bitbuf + bne gb_ok + mac_refill_bits +gb_ok: + rol + bmi gb_next +gb_skip: + bvc skip +gb_get_hi: + sec + sta zp_bits_hi + jsr get_crunched_byte +skip: +.ENDSCOPE +.ENDMACRO + + +.ifdef UNDEFINED_SYMBOL + dc.b -1 ; should not be assembled + error 1 +.else + dc.b 1 ; should be assembled +.endif + +const CONSTANT = 32 + +.eval CONSTANT + + mac_get_bits + mac_get_bits + +get_crunched_byte: + rts \ No newline at end of file diff --git a/test/unittest.bat b/test/unittest.bat index 5477e85..eedf75f 100644 --- a/test/unittest.bat +++ b/test/unittest.bat @@ -85,6 +85,16 @@ echo Merlin LUP test failed goto exit :merlup_pass +echo CA65 directives Test >>results\unittest.txt +..\bin\x64\x65.exe ca65directive.s -lst -endm >>results\unittest.txt +if %errorlevel% GTR 0 goto ca65_fail +rem check data here when relevant +if %errorlevel% EQU 0 goto ca65_pass +:ca65_fail +echo CA65 directives failed +goto exit +:ca65_pass + rem REVIEW MACROS! rem echo x65macro.i Test >>results\unittest.txt rem echo --------------- >>results\unittest.txt diff --git a/x65.cpp b/x65.cpp index e02a9f8..2632095 100644 --- a/x65.cpp +++ b/x65.cpp @@ -40,6 +40,29 @@ #include #include +// Command line arguments +static const strref cmdarg_listing("lst"); // -lst / -lst=(file.lst) : generate disassembly text from result(file or stdout) +static const strref cmdarg_tass_listing("tsl"); // -tsl=(file) : generate listing file in TASS style +static const strref cmdarg_tass_labels("tl"); // -tl=(file) : generate labels in TASS style +static const strref cmdarg_allinstr("opcodes"); // -opcodes / -opcodes=(file.s) : dump all available opcodes(file or stdout) +static const strref cmdarg_endmacro("endm"); // -endm : macros end with endm or endmacro instead of scoped('{' - '}') +static const strref cmdarg_cpu("cpu"); // declare CPU type, use with argument: -cpu=6502/65c02/65c02wdc/65816 +static const strref cmdarg_acc("acc"); // [65816] -acc=8/16: set the accumulator mode for 65816 at start, default is 8 bits +static const strref cmdarg_xy("xy"); // [65816] -xy=8/16: set the index register mode for 65816 at start, default is 8 bits +static const strref cmdarg_org("org"); // -org = $2000 or - org = 4096: force fixed address code at address +static const strref cmdarg_kickasm("kickasm"); // -kickasm: use Kick Assembler syntax +static const strref cmdarg_merlin("merlin"); // -merlin: use Merlin syntax +static const strref cmdarg_c64("c64"); // -c64 : Include load address(default) +static const strref cmdarg_a2b("a2b"); // -a2b : Apple II Dos 3.3 Binary +static const strref cmdarg_bin("bin"); // -bin : Produce raw binary\n" +static const strref cmdarg_a2p("a2p"); // -a2p : Apple II ProDos Binary +static const strref cmdarg_a2o("a2o"); // -a2o : Apple II GS OS executable (relocatable) +static const strref cmdarg_mrg("mrg"); // -mrg : Force merge all sections (use with -a2o) +static const strref cmdarg_sect("sect"); // -sect: display sections loaded and built +static const strref cmdarg_sym("sym"); // -sym (file.sym) : generate symbol file +static const strref cmdarg_obj("obj"); // -obj (file.x65) : generate object file for later linking +static const strref cmdarg_vice("vice"); // -vice (file.vs) : export a vice symbol file + // if the number of resolved labels exceed this in one late eval then skip // checking for relevance and just eval all unresolved expressions. #define MAX_LABELS_EVAL_ALL 16 @@ -153,72 +176,72 @@ enum StatusCode { // The following strings are in the same order as StatusCode const char *aStatusStrings[STATUSCODE_COUNT] = { - "ok", - "relative section", - "not ready", - "XREF dependent result", - "name is not a struct", - "Exporting binary without code or data section", - "Undefined code", - "Unexpected character in expression", - "Too many values in expression", - "Too many operators in expression", - "Unbalanced right parenthesis in expression", - "Expression operation", - "Expression missing values", - "Instruction can not be zero page", - "Invalid addressing mode for instruction", - "Branch out of range", - "Internal label organization mishap", - "Bad addressing mode", - "Unexpected character in addressing mode", - "Unexpected label assignment format", - "Changing value of label that is constant", - "Out of labels in pool", - "Internal label pool release confusion", - "Label pool range evaluation failed", - "Label pool was redeclared within its scope", - "Pool label already defined", - "Struct already defined", - "Referenced struct not found", - "Declare constant type not recognized (dc.?)", - "rept count expression could not be evaluated", - "hex must be followed by an even number of hex numbers", - "DS directive failed to evaluate immediately", - "File is not a valid x65 object file", - "Failed to read include file", - "User invoked error", + "ok", // STATUS_OK, // everything is fine + "relative section", // STATUS_RELATIVE_SECTION, // value is relative to a single section + "not ready", // STATUS_NOT_READY, // label could not be evaluated at this time + "XREF dependent result", // STATUS_XREF_DEPENDENT, // evaluated but relied on an XREF label to do so + "name is not a struct", // STATUS_NOT_STRUCT, // return is not a struct. + "Exporting binary without code or data section", // STATUS_EXPORT_NO_CODE_OR_DATA_SECTION, + "Undefined code", // ERROR_UNDEFINED_CODE = FIRST_ERROR, + "Unexpected character in expression", // ERROR_UNEXPECTED_CHARACTER_IN_EXPRESSION, + "Too many values in expression", // ERROR_TOO_MANY_VALUES_IN_EXPRESSION, + "Too many operators in expression", // ERROR_TOO_MANY_OPERATORS_IN_EXPRESSION, + "Unbalanced right parenthesis in expression", // ERROR_UNBALANCED_RIGHT_PARENTHESIS, + "Expression operation", // ERROR_EXPRESSION_OPERATION, + "Expression missing values", // ERROR_EXPRESSION_MISSING_VALUES, + "Instruction can not be zero page", // ERROR_INSTRUCTION_NOT_ZP, + "Invalid addressing mode for instruction", // ERROR_INVALID_ADDRESSING_MODE, + "Internal label organization mishap", // ERROR_LABEL_MISPLACED_INTERNAL, + "Bad addressing mode", // ERROR_BAD_ADDRESSING_MODE, + "Unexpected character in addressing mode", // ERROR_UNEXPECTED_CHARACTER_IN_ADDRESSING_MODE, + "Unexpected label assignment format", // ERROR_UNEXPECTED_LABEL_ASSIGMENT_FORMAT, + "Changing value of label that is constant", // ERROR_MODIFYING_CONST_LABEL, + "Out of labels in pool", // ERROR_OUT_OF_LABELS_IN_POOL, + "Internal label pool release confusion", // ERROR_INTERNAL_LABEL_POOL_ERROR, + "Label pool range evaluation failed", // ERROR_POOL_RANGE_EXPRESSION_EVAL, + "Label pool was redeclared within its scope", // ERROR_LABEL_POOL_REDECLARATION, + "Pool label already defined", // ERROR_POOL_LABEL_ALREADY_DEFINED, + "Struct already defined", // ERROR_STRUCT_ALREADY_DEFINED, + "Referenced struct not found", // ERROR_REFERENCED_STRUCT_NOT_FOUND, + "Declare constant type not recognized (dc.?)", // ERROR_BAD_TYPE_FOR_DECLARE_CONSTANT, + "rept count expression could not be evaluated", // ERROR_REPT_COUNT_EXPRESSION, + "hex must be followed by an even number of hex numbers", // ERROR_HEX_WITH_ODD_NIBBLE_COUNT, + "DS directive failed to evaluate immediately", // ERROR_DS_MUST_EVALUATE_IMMEDIATELY, + "File is not a valid x65 object file", // ERROR_NOT_AN_X65_OBJECT_FILE, + "Failed to read include file", // ERROR_COULD_NOT_INCLUDE_FILE, + "User invoked error", // ERROR_USER, - "Errors after this point will stop execution", + "Errors after this point will stop execution", // ERROR_STOP_PROCESSING_ON_HIGHER, // errors greater than this will stop execution - "Target address must evaluate immediately for this operation", - "Scoping is too deep", - "Unbalanced scope closure", - "Unexpected macro formatting", - "Align must evaluate immediately", - "Out of memory for macro expansion", - "Problem with macro argument", - "Conditional could not be resolved", - "#endif encountered outside conditional block", - "#else or #elif outside conditional block", - "Struct can not be assembled as is", - "Enum can not be assembled as is", - "Conditional assembly (#if/#ifdef) was not terminated in file or macro", - "rept is missing a scope ('{ ... }')", - "Link can only be used in a fixed address section", - "Link can not be used in dummy sections", - "Can not process this line", - "Unexpected target offset for reloc or late evaluation", - "CPU is not supported", - "Can't append sections", - "Zero page / Direct page section out of range", - "Attempting to assign an address to a non-existent section", - "Attempting to assign an address to a fixed address section", - "Can not link a zero page section with a non-zp section", - "Out of memory while building", - "Can not write to file", - "Assembly aborted", - "Condition too deeply nested", + "Branch is out of range", // ERROR_BRANCH_OUT_OF_RANGE, + "Target address must evaluate immediately for this operation", // ERROR_TARGET_ADDRESS_MUST_EVALUATE_IMMEDIATELY, + "Scoping is too deep", // ERROR_TOO_DEEP_SCOPE, + "Unbalanced scope closure", // ERROR_UNBALANCED_SCOPE_CLOSURE, + "Unexpected macro formatting", // ERROR_BAD_MACRO_FORMAT, + "Align must evaluate immediately", // ERROR_ALIGN_MUST_EVALUATE_IMMEDIATELY, + "Out of memory for macro expansion", // ERROR_OUT_OF_MEMORY_FOR_MACRO_EXPANSION, + "Problem with macro argument", // ERROR_MACRO_ARGUMENT, + "Conditional could not be resolved", // ERROR_CONDITION_COULD_NOT_BE_RESOLVED, + "#endif encountered outside conditional block", // ERROR_ENDIF_WITHOUT_CONDITION, + "#else or #elif outside conditional block", // ERROR_ELSE_WITHOUT_IF, + "Struct can not be assembled as is", // ERROR_STRUCT_CANT_BE_ASSEMBLED, + "Enum can not be assembled as is", // ERROR_ENUM_CANT_BE_ASSEMBLED, + "Conditional assembly (#if/#ifdef) was not terminated in file or macro", // ERROR_UNTERMINATED_CONDITION, + "rept is missing a scope ('{ ... }')", // ERROR_REPT_MISSING_SCOPE, + "Link can only be used in a fixed address section", // ERROR_LINKER_MUST_BE_IN_FIXED_ADDRESS_SECTION, + "Link can not be used in dummy sections", // ERROR_LINKER_CANT_LINK_TO_DUMMY_SECTION, + "Can not process this line", // ERROR_UNABLE_TO_PROCESS, + "Unexpected target offset for reloc or late evaluation", // ERROR_SECTION_TARGET_OFFSET_OUT_OF_RANGE, + "CPU is not supported", // ERROR_CPU_NOT_SUPPORTED, + "Can't append sections", // ERROR_CANT_APPEND_SECTION_TO_TARGET, + "Zero page / Direct page section out of range", // ERROR_ZEROPAGE_SECTION_OUT_OF_RANGE, + "Attempting to assign an address to a non-existent section", // ERROR_NOT_A_SECTION, + "Attempting to assign an address to a fixed address section", // ERROR_CANT_REASSIGN_FIXED_SECTION, + "Can not link a zero page section with a non-zp section", // ERROR_CANT_LINK_ZP_AND_NON_ZP, + "Out of memory while building", // ERROR_OUT_OF_MEMORY, + "Can not write to file", // ERROR_CANT_WRITE_TO_FILE, + "Assembly aborted", // ERROR_ABORTED, + "Condition too deeply nested", // ERROR_CONDITION_TOO_NESTED, }; // Assembler directives @@ -251,6 +274,7 @@ enum AssemblerDirective { AD_LABPOOL, // POOL: Create a pool of addresses to assign as labels dynamically AD_IF, // #IF: Conditional assembly follows based on expression AD_IFDEF, // #IFDEF: Conditional assembly follows based on label defined or not + AD_IFNDEF, // #IFNDEF: Conditional assembly inverted from IFDEF AD_ELSE, // #ELSE: Otherwise assembly AD_ELIF, // #ELIF: Otherwise conditional assembly follows AD_ENDIF, // #ENDIF: End a block of #IF/#IFDEF @@ -268,6 +292,8 @@ enum AssemblerDirective { AD_LST, // LST: Controls symbol listing AD_DUMMY, // DUM: Start a dummy section (increment address but don't write anything???) AD_DUMMY_END, // DEND: End a dummy section + AD_SCOPE, // SCOPE: Begin ca65 style scope + AD_ENDSCOPE, // ENDSCOPR: End ca65 style scope AD_DS, // DS: Define section, zero out # bytes or rewind the address if negative AD_USR, // USR: MERLIN user defined pseudo op, runs some code at a hard coded address on apple II, on PC does nothing. AD_SAV, // SAV: MERLIN version of export but contains full filename, not an appendable name @@ -964,6 +990,7 @@ DirectiveName aDirectiveNames[] { { "POOL", AD_LABPOOL }, { "IF", AD_IF }, { "IFDEF", AD_IFDEF }, + { "IFNDEF", AD_IFNDEF }, { "ELSE", AD_ELSE }, { "ELIF", AD_ELIF }, { "ENDIF", AD_ENDIF }, @@ -980,6 +1007,8 @@ DirectiveName aDirectiveNames[] { { "I8", AD_XY8 }, // I8: Set 8 bit index register mode { "DUMMY", AD_DUMMY }, { "DUMMY_END", AD_DUMMY_END }, + { "SCOPE", AD_SCOPE }, // SCOPE: Begin ca65 style scope + { "ENDSCOPE", AD_ENDSCOPE },// ENDSCOPR: End ca65 style scope { "DS", AD_DS }, // Define space { "ABORT", AD_ABORT }, { "ERR", AD_ABORT }, // DASM version of ABORT @@ -1195,7 +1224,6 @@ public: strovl string_value; // string contents if modified, initialized to null string StatusCode Append(strref append); - StatusCode ParseLine(strref line); strref get() { return string_value.valid() ? string_value.get_strref() : string_const; } void clear() { @@ -1513,13 +1541,17 @@ public: int scope_depth; int brace_depth; // scope depth defined only by braces, not files + strref export_base_name; // binary output name if available + strref last_label; // most recently defined label for Merlin macro + + // ca65 style scope (for now treat global symbols as local symbols, no outside name lookup) + int directive_scope_depth; + // Eval relative result (only valid if EvalExpression returns STATUS_RELATIVE_SECTION) int lastEvalSection; int lastEvalValue; int8_t lastEvalShift; - strref export_base_name; // binary output name if available - strref last_label; // most recently defined label for Merlin macro int8_t list_flags; // listing flags accumulating for each line bool accumulator_16bit; // 65816 specific software dependent immediate mode bool index_reg_16bit; // -"- @@ -1737,6 +1769,7 @@ void Asm::Cleanup() { conditional_depth = 0; conditional_nesting[0] = 0; conditional_consumed[0] = false; + directive_scope_depth = 0; error_encountered = false; list_assembly = false; end_macro_directive = false; @@ -1865,7 +1898,7 @@ char* Asm::LoadBinary(strref filename, size_t &size) { if (file.get_last()!='/' && file.get_last()!='\\') file.append('/'); file.append(filename); -#ifdef WIN32 +#ifdef _WIN32 file.replace('/', '\\'); #endif ++i; @@ -2792,8 +2825,9 @@ StatusCode Asm::AddMacro(strref macro, strref source_name, strref source_file, s } else { return ERROR_BAD_MACRO_FORMAT; } } else { name = macro.split_range(label_end_char_range); - macro.skip_whitespace(); + while (macro.get_first() == ' ' || macro.get_first() == '\t') { ++macro; } strref left_line = macro.get_line(); + if (left_line.get_first() == ';' || left_line.has_prefix("//")) { left_line.clear(); } left_line.skip_whitespace(); left_line = left_line.before_or_full(';').before_or_full(c_comment); if (left_line && left_line[0]!='(' && left_line[0]!='{') { @@ -2837,7 +2871,10 @@ StatusCode Asm::AddMacro(strref macro, strref source_name, strref source_file, s for (;;) { f = macro.find(endm, f+1); if (f<0) { return ERROR_BAD_MACRO_FORMAT; } - if (f==0||strref::is_ws(macro[f-1])) { break; } + if (f == 0 || strref::is_ws(macro[f - 1]) || macro[f - 1] == '.') { + if (f && macro[f - 1] == '.') { --f; } + break; + } } pMacro->macro = macro.get_substr(0, f); macro += f; @@ -4125,7 +4162,7 @@ StatusCode Asm::AddressLabel(strref label) pLabel->constant = constLabel; last_label = label; bool local = label[0]=='.' || label[0]=='@' || label[0]=='!' || label[0]==':' || label.get_last()=='$'; - LabelAdded(pLabel, local); + LabelAdded(pLabel, local || directive_scope_depth>0); // TODO: in named scopes the label can still be referenced outside the scope directive if (local) { MarkLabelLocal(label); } status = CheckLateEval(label); if (!local && label[0]!=']') { // MERLIN: Variable label does not invalidate local labels @@ -4214,7 +4251,7 @@ StringSymbol *Asm::AddString(strref string_name, strref string_value) } // append a string to another string -StatusCode StringSymbol::Append(strref append) +StatusCode sStringSymbols::Append(strref append) { if (!append) return STATUS_OK; @@ -5215,16 +5252,27 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc case AD_IFDEF: if (NewConditional()) { // Start new conditional block CheckConditionalDepth(); // Check if nesting - bool conditional_result; - error = EvalStatement(line, conditional_result); - strref name = line.get_trimmed_ws(); - if (GetLabel(name) != nullptr || GetString(name) != nullptr) + // ifdef doesn't need to evaluate the value, just determine if it exists or not + strref label = line.split_range_trim(label_end_char_range); + if( GetLabel(label, etx.file_ref) ) ConsumeConditional(); else SetConditional(); } break; + case AD_IFNDEF: + if (NewConditional()) { // Start new conditional block + CheckConditionalDepth(); // Check if nesting + // ifdef doesn't need to evaluate the value, just determine if it exists or not + strref label = line.split_range_trim(label_end_char_range); + if (!GetLabel(label, etx.file_ref)) + ConsumeConditional(); + else + SetConditional(); + } + break; + case AD_ELSE: if (ConditionalAsm()) { if (ConditionalConsumed()) @@ -5327,7 +5375,15 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc break; } break; + + case AD_SCOPE: + directive_scope_depth++; + break; + case AD_ENDSCOPE: + directive_scope_depth--; + break; + case AD_DS: return Directive_DS(line); } @@ -5893,15 +5949,13 @@ StatusCode Asm::BuildLine(strref line) { error = AssignLabel(label, line); line.clear(); list_flags |= ListLine::KEYWORD; - } - else if (keyword_equ.is_prefix_word(line)) { + } else if (keyword_equ.is_prefix_word(line)) { line += keyword_equ.get_len(); line.skip_whitespace(); error = AssignLabel(label, line); line.clear(); list_flags |= ListLine::KEYWORD; - } - else { + } else { uint32_t nameHash = label.fnv1a(); uint32_t macro = FindLabelIndex(nameHash, macros.getKeys(), macros.count()); bool gotConstruct = false; @@ -7187,15 +7241,7 @@ StatusCode Asm::WriteA2GS_OMF(strref filename, bool full_collapse) { } int main(int argc, char **argv) { - const strref listing("lst"); - const strref tass_listing( "tsl" ); - const strref tass_labels( "tl" ); - const strref allinstr("opcodes"); - const strref endmacro("endm"); - const strref cpu("cpu"); - const strref acc("acc"); - const strref xy("xy"); - const strref org("org"); + int return_value = 0; bool load_header = true; bool size_header = false; @@ -7210,15 +7256,15 @@ int main(int argc, char **argv) { const char *source_filename = nullptr, *obj_out_file = nullptr; const char *binary_out_name = nullptr; - const char *sym_file = nullptr, *vs_file = nullptr, *tass_labels_file = nullptr; + const char *sym_file = nullptr, *vs_file = nullptr, *cmdarg_tass_labels_file = nullptr; strref list_file, allinstr_file; strref tass_list_file; for (int a = 1; a1) { assembler.default_org = (int)(arg+1).ahextoui(); } else if (arg.is_number()) { assembler.default_org = (int)arg.atoi(); } // force the current section to be org'd assembler.AssignAddressToSection(assembler.SectionId(), assembler.default_org); - } else if (arg.has_prefix(acc)&&arg[acc.get_len()]=='=') { + } else if (arg.has_prefix(cmdarg_acc)&&arg[cmdarg_acc.get_len()]=='=') { assembler.accumulator_16bit = arg.after('=').atoi()==16; - } else if (arg.has_prefix(xy)&&arg[xy.get_len()]=='=') { + } else if (arg.has_prefix(cmdarg_xy)&&arg[cmdarg_xy.get_len()]=='=') { assembler.index_reg_16bit = arg.after('=').atoi()==16; - } else if (arg.has_prefix(cpu)&&(arg.get_len()==cpu.get_len()||arg[cpu.get_len()]=='=')) { + } else if (arg.has_prefix(cmdarg_cpu)&&(arg.get_len()==cmdarg_cpu.get_len()||arg[cmdarg_cpu.get_len()]=='=')) { arg.split_token_trim('='); bool found = false; for (int c = 0; cvalue; if( size_t( i->section ) < assembler.allSections.size() ) { value += assembler.allSections[ i->section ].start_address; } From a3f8a7cf44f155a6694a6ed39589b1aeffdd5374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Wed, 8 Jan 2020 17:04:42 -0800 Subject: [PATCH 02/19] ca65 uses import/export instead of xref/xdef, section export is not available in this case --- x65.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x65.cpp b/x65.cpp index 2632095..bca0e3b 100644 --- a/x65.cpp +++ b/x65.cpp @@ -62,6 +62,7 @@ static const strref cmdarg_sect("sect"); // -sect: display sections loaded and static const strref cmdarg_sym("sym"); // -sym (file.sym) : generate symbol file static const strref cmdarg_obj("obj"); // -obj (file.x65) : generate object file for later linking static const strref cmdarg_vice("vice"); // -vice (file.vs) : export a vice symbol file +static const strref cmdarg_xrefimp("xrefimp"); // -xrefimp : import directive means xref, not include/incbin // if the number of resolved labels exceed this in one late eval then skip // checking for relevance and just eval all unresolved expressions. @@ -1559,6 +1560,7 @@ public: bool error_encountered; // if any error encountered, don't export binary bool list_assembly; // generate assembler listing bool end_macro_directive; // whether to use { } or macro / endmacro for macro scope + bool import_means_xref; // Convert source to binary void Assemble(strref source, strref filename, bool obj_target); @@ -1773,6 +1775,7 @@ void Asm::Cleanup() { error_encountered = false; list_assembly = false; end_macro_directive = false; + import_means_xref = false; accumulator_16bit = false; // default 65816 8 bit immediate mode index_reg_16bit = false; // other CPUs won't be affected. cycle_counter_level = 0; @@ -4646,7 +4649,7 @@ StatusCode Asm::Directive_Incbin(strref line, int skip, int len) StatusCode Asm::Directive_Import(strref line) { line.skip_whitespace(); - + int skip = 0; // binary import skip this amount int len = 0; // binary import load up to this amount strref param; // read out skip & max len parameters @@ -5051,6 +5054,7 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc return ERROR_CPU_NOT_SUPPORTED; case AD_EXPORT: + if (import_means_xref) { return Directive_XDEF(line); } line.trim_whitespace(); CurrSection().export_append = line.split_label(); break; @@ -5208,6 +5212,7 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc return Directive_Incbin(line); case AD_IMPORT: + if (import_means_xref) { return Directive_XREF(line); } return Directive_Import(line); case AD_LABEL: @@ -7294,6 +7299,8 @@ int main(int argc, char **argv) { info = true; } else if (arg.same_str(cmdarg_endmacro)) { assembler.end_macro_directive = true; + } else if (arg.same_str(cmdarg_xrefimp)) { + assembler.import_means_xref = true; } else if (arg.has_prefix(cmdarg_listing)&&(arg.get_len()==cmdarg_listing.get_len()||arg[cmdarg_listing.get_len()]=='=')) { assembler.list_assembly = true; list_output = true; From 12e158d63788904d1e0da75092a196f7b382de5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Wed, 8 Jan 2020 18:59:06 -0800 Subject: [PATCH 03/19] Fixed scoped labels turning into local labels and expiring when endscope is encountered --- x65.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x65.cpp b/x65.cpp index bca0e3b..f4507ce 100644 --- a/x65.cpp +++ b/x65.cpp @@ -4165,7 +4165,8 @@ StatusCode Asm::AddressLabel(strref label) pLabel->constant = constLabel; last_label = label; bool local = label[0]=='.' || label[0]=='@' || label[0]=='!' || label[0]==':' || label.get_last()=='$'; - LabelAdded(pLabel, local || directive_scope_depth>0); // TODO: in named scopes the label can still be referenced outside the scope directive + if (directive_scope_depth > 0) { local = true; } + LabelAdded(pLabel, local); // TODO: in named scopes the label can still be referenced outside the scope directive if (local) { MarkLabelLocal(label); } status = CheckLateEval(label); if (!local && label[0]!=']') { // MERLIN: Variable label does not invalidate local labels @@ -5383,11 +5384,11 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc case AD_SCOPE: directive_scope_depth++; - break; + return EnterScope(); case AD_ENDSCOPE: directive_scope_depth--; - break; + return ExitScope(); case AD_DS: return Directive_DS(line); From b3d9b40563e713a76c38bcd7a99e66472c92e77b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Thu, 9 Jan 2020 16:01:16 -0800 Subject: [PATCH 04/19] push/pull symbols and strings with directiv --- test/ca65directive.s | 7 ++ x65.cpp | 276 ++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 280 insertions(+), 3 deletions(-) diff --git a/test/ca65directive.s b/test/ca65directive.s index 6d3974e..a89f7a2 100644 --- a/test/ca65directive.s +++ b/test/ca65directive.s @@ -2,6 +2,13 @@ .org $2000 +test_stack = 0 +PUSH test_stack +test_stack = 10 +eval test_stack +PULL test_stack +eval test_stack + zp_len_lo = $a7 zp_len_hi = $a8 diff --git a/x65.cpp b/x65.cpp index f4507ce..c58ef00 100644 --- a/x65.cpp +++ b/x65.cpp @@ -39,6 +39,7 @@ #include #include #include +#include // Command line arguments static const strref cmdarg_listing("lst"); // -lst / -lst=(file.lst) : generate disassembly text from result(file or stdout) @@ -138,6 +139,7 @@ enum StatusCode { ERROR_DS_MUST_EVALUATE_IMMEDIATELY, ERROR_NOT_AN_X65_OBJECT_FILE, ERROR_COULD_NOT_INCLUDE_FILE, + ERROR_PULL_WITHOUT_PUSH, ERROR_USER, ERROR_STOP_PROCESSING_ON_HIGHER, // errors greater than this will stop execution @@ -210,6 +212,7 @@ const char *aStatusStrings[STATUSCODE_COUNT] = { "DS directive failed to evaluate immediately", // ERROR_DS_MUST_EVALUATE_IMMEDIATELY, "File is not a valid x65 object file", // ERROR_NOT_AN_X65_OBJECT_FILE, "Failed to read include file", // ERROR_COULD_NOT_INCLUDE_FILE, + "Using symbol PULL without first using a PUSH", // ERROR_PULL_WITHOUT_PUSH "User invoked error", // ERROR_USER, "Errors after this point will stop execution", // ERROR_STOP_PROCESSING_ON_HIGHER, // errors greater than this will stop execution @@ -295,6 +298,8 @@ enum AssemblerDirective { AD_DUMMY_END, // DEND: End a dummy section AD_SCOPE, // SCOPE: Begin ca65 style scope AD_ENDSCOPE, // ENDSCOPR: End ca65 style scope + AD_PUSH, // PUSH: Push the value of a variable symbol on a stack + AD_PULL, // PULL: Pull the value of a variable symbol from its stack, must be pushed first AD_DS, // DS: Define section, zero out # bytes or rewind the address if negative AD_USR, // USR: MERLIN user defined pseudo op, runs some code at a hard coded address on apple II, on PC does nothing. AD_SAV, // SAV: MERLIN version of export but contains full filename, not an appendable name @@ -1008,9 +1013,11 @@ DirectiveName aDirectiveNames[] { { "I8", AD_XY8 }, // I8: Set 8 bit index register mode { "DUMMY", AD_DUMMY }, { "DUMMY_END", AD_DUMMY_END }, + { "DS", AD_DS }, // Define space { "SCOPE", AD_SCOPE }, // SCOPE: Begin ca65 style scope { "ENDSCOPE", AD_ENDSCOPE },// ENDSCOPR: End ca65 style scope - { "DS", AD_DS }, // Define space + { "PUSH", AD_PUSH }, + { "PULL", AD_PULL }, { "ABORT", AD_ABORT }, { "ERR", AD_ABORT }, // DASM version of ABORT }; @@ -1159,6 +1166,176 @@ public: } }; + + +template< class KeyType, class ValueType, class CountType = size_t > struct HashTable { + CountType size, maxSteps, used; + KeyType* keys; + ValueType* values; + + static CountType HashFunction(KeyType v) { return CountType(((v + (v >> 27) + (v << 29)) + 14695981039346656037) * 1099511628211); } + static CountType HashIndex(KeyType hash, CountType tableSize) { return hash & (tableSize - 1); } + static CountType GetNextIndex(KeyType hash, CountType tableSize) { return (hash + 1) & (tableSize - 1); } + static CountType KeyToIndex(KeyType key, CountType tableSize) { return HashIndex(HashFunction(key), tableSize); } + static CountType FindKeyIndex(KeyType hash, CountType hashTableSize, KeyType* hashKeys, CountType maxKeySteps) { + CountType index = KeyToIndex(hash, hashTableSize); + while (hashKeys) { + KeyType key = hashKeys[index]; + if (!key || key == hash) { return index; } + index = GetNextIndex(index, hashTableSize); + if (!maxKeySteps--) { break; } + } + return index; + } + + CountType KeyToIndex(KeyType key) { return KeyToIndex(key, size); } + + CountType InsertKey(KeyType key, CountType index) { + const KeyType* hashKeys = keys; + CountType currSize = size; + CountType insertSteps = 0; + while (KeyType k = hashKeys[index]) { + if (k == key) { return index; } // key already exists + CountType kfirst = KeyToIndex(k, currSize); + CountType ksteps = kfirst > index ? (currSize + index - kfirst) : (index - kfirst); + if (insertSteps > ksteps) { return index; } + index = GetNextIndex(index, size); + ++insertSteps; + } + return index; + } + + CountType FindKeyIndex(KeyType hash) const { return FindKeyIndex(hash, size, keys, maxSteps); } + + CountType Steps(KeyType hash) { + CountType slot = KeyToIndex(hash, size); + CountType numSteps = 0; + while (keys[slot] && keys[slot] != hash) { + ++numSteps; + slot = GetNextIndex(slot, size); + } + return numSteps; + } + + void UpdateSteps(CountType first, CountType slot) { + CountType steps = slot > first ? (slot - first) : (size + slot - first); + if (steps > maxSteps) { maxSteps = steps; } + } + + ValueType* InsertFitted(KeyType key) { + assert(key); // key may not be 0 + CountType first = KeyToIndex(key); + CountType slot = InsertKey(key, first); + UpdateSteps(first, slot); + if (keys[slot]) { + if (keys[slot] == key) { return &values[slot]; } else { + KeyType prvKey = keys[slot]; + ValueType prev_value = values[slot]; + keys[slot] = key; + for (;; ) { + CountType prev_first = KeyToIndex(prvKey); + CountType slotRH = InsertKey(prvKey, prev_first); + UpdateSteps(prev_first, slotRH); + if (keys[slotRH] && keys[slotRH] != prvKey) { + KeyType tmpKey = keys[slotRH]; + keys[slotRH] = prvKey; + prvKey = tmpKey; + ValueType temp_value = values[slotRH]; + values[slotRH] = prev_value; + prev_value = temp_value; + } else { + keys[slotRH] = prvKey; + values[slotRH] = prev_value; + ++used; + return &values[slot]; + } + } + } + } + keys[slot] = key; + ++used; + return &values[slot]; + } + + HashTable() { Reset(); } + + void Reset() { + used = 0; + size = 0; + maxSteps = 0; + keys = nullptr; + values = nullptr; + } + + ~HashTable() { Clear(); } + + void Clear() { + if (values) { + for (CountType i = 0, n = size; i < n; ++i) { + values[i].~ValueType(); + } + free(values); + } + if (keys) { free(keys); } + Reset(); + } + + CountType GetUsed() const { return used; } + bool TableMax() const { return used && (used << 4) >= (size * 13); } + + void Grow() { + KeyType *prevKeys = keys; + ValueType *prevValues = values; + CountType prevSize = size, newSize = prevSize ? (prevSize << 1) : 64; + size = newSize; + keys = (KeyType*)calloc(1, newSize * sizeof(KeyType)); + values = (ValueType*)calloc(1, newSize * sizeof(ValueType)); + maxSteps = 0; + for (CountType i = 0; i < newSize; ++i) { new (values + i) ValueType; } + if (used) { + used = 0; + for (CountType i = 0; i < prevSize; i++) { + if (KeyType key = prevKeys[i]) { *InsertFitted(key) = prevValues[i]; } + } + } + if (prevKeys) { free(prevKeys); } + if (prevValues) { + for (CountType i = 0; i != prevSize; ++i) { prevValues[i].~ValueType(); } + free(prevValues); + } + } + + ValueType* InsertKey(KeyType key) + { + if (!size || TableMax()) { Grow(); } + return InsertFitted(key); + } + + ValueType* InsertKeyValue(KeyType key, const ValueType& value) + { + ValueType* value_ptr = InsertKeyValue(key); + *value_ptr = value; + return value_ptr; + } + + bool KeyExists(KeyType key) + { + return size && key && keys[FindKeyIndex(key)] == key; + } + + ValueType* GetValue(KeyType key) + { + if (size && key) { + CountType slot = FindKeyIndex(key); + if (keys[slot] == key) { + return &values[slot]; + } + } + return nullptr; + } +}; + + // relocs are cheaper than full expressions and work with // local labels for relative sections which would otherwise // be out of scope at link time. @@ -1494,6 +1671,17 @@ public: bool empty() const { return stack.size() == 0; } }; +// Support for the PULL and PUSH directives +typedef union { int value; char* string; } ValueOrString; +typedef std::vector < ValueOrString > SymbolStack; +class SymbolStackTable : public HashTable< uint64_t, SymbolStack* > { +public: + void PushSymbol(Label* symbol); + StatusCode PullSymbol(Label* symbol); + void PushSymbol(StringSymbol* string); + StatusCode PullSymbol(StringSymbol* string); +}; + // The state of the assembler class Asm { public: @@ -1514,6 +1702,8 @@ public: std::vector externals; // external labels organized by object file MapSymbolArray map; + SymbolStackTable symbolStacks; // enable push/pull of symbols + // CPU target struct mnem *opcode_table; int opcode_count; @@ -1736,6 +1926,65 @@ public: Cleanup(); localLabels.reserve(256); loadedData.reserve(16); lateEval.reserve(64); } }; + +void SymbolStackTable::PushSymbol(Label* symbol) +{ + uint64_t key = symbol->label_name.fnv1a_64(symbol->pool_name.fnv1a_64()); + SymbolStack** ppStack = InsertKey(key); // ppStack will exist but contains a pointer that may not exist + if (!*ppStack) { *ppStack = new SymbolStack; } + ValueOrString val; + val.value = symbol->value; + (*ppStack)->push_back(val); +} + +StatusCode SymbolStackTable::PullSymbol(Label* symbol) +{ + uint64_t key = symbol->label_name.fnv1a_64(symbol->pool_name.fnv1a_64()); + SymbolStack** ppStack = GetValue(key); + if (!ppStack || !(*ppStack)->size()) { return ERROR_PULL_WITHOUT_PUSH; } + symbol->value = (**ppStack)[(*ppStack)->size() - 1].value; + (*ppStack)->pop_back(); + return STATUS_OK; +} + +void SymbolStackTable::PushSymbol(StringSymbol* string) +{ + uint64_t key = string->string_name.fnv1a_64(); + SymbolStack** ppStack = InsertKey(key); // ppStack will exist but contains a pointer that may not exist + if (!*ppStack) { *ppStack = new SymbolStack; } + ValueOrString val; + val.string = nullptr; + if (string->string_value) { + val.string = (char*)malloc(string->string_value.get_len() + 1); + memcpy(val.string, string->string_value.get(), string->string_value.get_len()); + val.string[string->string_value.get_len()] = 0; + } + (*ppStack)->push_back(val); +} + +StatusCode SymbolStackTable::PullSymbol(StringSymbol* string) +{ + uint64_t key = string->string_name.fnv1a_64(); + SymbolStack** ppStack = GetValue(key); + if (!ppStack || !(*ppStack)->size()) { return ERROR_PULL_WITHOUT_PUSH; } + char* str = (**ppStack)[(*ppStack)->size() - 1].string; + if (!str && string->string_value) { + free(string->string_value.charstr()); + string->string_value.invalidate(); + } else { + if (string->string_value.empty() || string->string_value.cap() < (strlen(str) + 1)) { + if (string->string_value.charstr()) { free(string->string_value.charstr()); } + string->string_value.set_overlay((char*)malloc(strlen(str) + 1), strlen(str) + 1); + } + string->string_value.copy(str); + free(str); + } + (*ppStack)->pop_back(); + return STATUS_OK; +} + + + // Clean up work allocations void Asm::Cleanup() { for (std::vector::iterator i = loadedData.begin(); i != loadedData.end(); ++i) { @@ -5382,6 +5631,9 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc } break; + case AD_DS: + return Directive_DS(line); + case AD_SCOPE: directive_scope_depth++; return EnterScope(); @@ -5390,8 +5642,26 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc directive_scope_depth--; return ExitScope(); - case AD_DS: - return Directive_DS(line); + case AD_PUSH: + line.trim_whitespace(); + if (Label *label = GetLabel(line)) { + symbolStacks.PushSymbol(label); + return STATUS_OK; + } else if( StringSymbol* string = GetString(line)) { + symbolStacks.PushSymbol(string); + return STATUS_OK; + } + return ERROR_UNABLE_TO_PROCESS; + + case AD_PULL: + line.trim_whitespace(); + if (Label *label = GetLabel(line)) { + return symbolStacks.PullSymbol(label); + } else if (StringSymbol* string = GetString(line)) { + return symbolStacks.PullSymbol(string); + } + return ERROR_UNABLE_TO_PROCESS; + } return error; } From 385155d5eb117e3eba05d943d76d3ea30b7dff88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Thu, 9 Jan 2020 16:08:14 -0800 Subject: [PATCH 05/19] Update ca65directive.s --- test/ca65directive.s | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/ca65directive.s b/test/ca65directive.s index 6d3974e..41c38be 100644 --- a/test/ca65directive.s +++ b/test/ca65directive.s @@ -2,6 +2,10 @@ .org $2000 +.REPT 7 + dc.b rept +.ENDR + zp_len_lo = $a7 zp_len_hi = $a8 From 758b4349ebb49cf97b03d03c3a42ade25b223ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Thu, 9 Jan 2020 23:10:55 -0800 Subject: [PATCH 06/19] Starting assembler functions --- x65.cpp | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/x65.cpp b/x65.cpp index c58ef00..b0b4df3 100644 --- a/x65.cpp +++ b/x65.cpp @@ -314,6 +314,14 @@ enum AssemblerDirective { AD_ERROR, }; +// evaluation functions +enum EvalFuncs { + EF_DEFINED, // DEFINED(label) 1 if label is defined + EF_BLANK, // BLANK() 1 if the contents within the parenthesis is empty + EF_CONST, // CONST(label) 1 if label is a const label + EF_SIN, // SIN(index, period, amplitude) +}; + // Operators are either instructions or directives enum OperationType { OT_NONE, @@ -1058,8 +1066,21 @@ DirectiveName aDirectiveNamesMerlin[] { { "CYC", AD_CYC }, // MERLIN: Start and stop cycle counter }; +struct EvalFuncNames { + const char* name; + EvalFuncs function; +}; + +EvalFuncNames aEvalFunctions[] = { + { "DEFINED", EF_DEFINED }, // DEFINED(label) 1 if label is defined + { "BLANK", EF_BLANK }, // BLANK() 1 if the contents within the parenthesis is empty + { "CONST", EF_CONST }, // CONST(label) 1 if label is a const label + { "SIN", EF_SIN }, // SIN(index, period, amplitude) +}; + static const int nDirectiveNames = sizeof(aDirectiveNames) / sizeof(aDirectiveNames[0]); static const int nDirectiveNamesMerlin = sizeof(aDirectiveNamesMerlin) / sizeof(aDirectiveNamesMerlin[0]); +static const int nEvalFuncs = sizeof(aEvalFunctions) / sizeof(aEvalFunctions[0]); // Binary search over an array of unsigned integers, may contain multiple instances of same key uint32_t FindLabelIndex(uint32_t hash, uint32_t *table, uint32_t count) @@ -1974,7 +1995,7 @@ StatusCode SymbolStackTable::PullSymbol(StringSymbol* string) } else { if (string->string_value.empty() || string->string_value.cap() < (strlen(str) + 1)) { if (string->string_value.charstr()) { free(string->string_value.charstr()); } - string->string_value.set_overlay((char*)malloc(strlen(str) + 1), strlen(str) + 1); + string->string_value.set_overlay((char*)malloc(strlen(str) + 1), (strl_t)strlen(str) + 1); } string->string_value.copy(str); free(str); From a535295929ca66f5b0a20ec73f56e8d3c09de345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Fri, 10 Jan 2020 14:20:00 -0800 Subject: [PATCH 07/19] Implementing Eval Functions, complimented by IFCONST, IFBLANK and IFNBLANK --- test/ca65directive.s | 24 ++++++++- x65.cpp | 126 +++++++++++++++++++++++++++++++++++++++---- 2 files changed, 138 insertions(+), 12 deletions(-) diff --git a/test/ca65directive.s b/test/ca65directive.s index 6a388da..5b4f0ad 100644 --- a/test/ca65directive.s +++ b/test/ca65directive.s @@ -6,12 +6,32 @@ dc.b rept .ENDR +eval Checking defined function, Should be 0: .defined(test_stack) test_stack = 0 +eval Checking referenced function, Should be 0: .referenced(test_stack) +eval Checking defined function, Should be 1: .defined(test_stack) PUSH test_stack +eval Checking referenced function, Should be 1: .referenced(test_stack) test_stack = 10 -eval test_stack +eval Push Before Pull: test_stack PULL test_stack -eval test_stack +eval Pull original: test_stack + +eval Checking symbol is not const (0): .const(test_stack) +const ConstAddress = $1000 +eval Checking symbol is const (0): .const(ConstAddress) + +eval This should be blank (1): .blank() +eval This should be blank (1): .blank({}) +eval This should be not be blank (0): .blank({monkeys}) + +.ifconst test_stack +eval Checking ifconst with non-const symbol, should not print: +.endif + +.ifconst ConstAddress +eval Checking ifconst with const symbol, this should print: +.endif zp_len_lo = $a7 zp_len_hi = $a8 diff --git a/x65.cpp b/x65.cpp index b0b4df3..0d8343a 100644 --- a/x65.cpp +++ b/x65.cpp @@ -279,6 +279,9 @@ enum AssemblerDirective { AD_IF, // #IF: Conditional assembly follows based on expression AD_IFDEF, // #IFDEF: Conditional assembly follows based on label defined or not AD_IFNDEF, // #IFNDEF: Conditional assembly inverted from IFDEF + AD_IFCONST, // #IFCONST: Conditional assembly follows based on label being const + AD_IFBLANK, // #IFBLANK: Conditional assembly follows based on rest of line empty + AD_IFNBLANK, // #IFNBLANK: Conditional assembly follows based on rest of line not empty AD_ELSE, // #ELSE: Otherwise assembly AD_ELIF, // #ELIF: Otherwise conditional assembly follows AD_ENDIF, // #ENDIF: End a block of #IF/#IFDEF @@ -317,6 +320,7 @@ enum AssemblerDirective { // evaluation functions enum EvalFuncs { EF_DEFINED, // DEFINED(label) 1 if label is defined + EF_REFERENCED, // REFERENCED(label) 1 if label has been referenced in this file EF_BLANK, // BLANK() 1 if the contents within the parenthesis is empty EF_CONST, // CONST(label) 1 if label is a const label EF_SIN, // SIN(index, period, amplitude) @@ -1005,6 +1009,9 @@ DirectiveName aDirectiveNames[] { { "IF", AD_IF }, { "IFDEF", AD_IFDEF }, { "IFNDEF", AD_IFNDEF }, + { "IFCONST", AD_IFCONST }, + { "IFBLANK", AD_IFBLANK }, // #IFBLANK: Conditional assembly follows based on rest of line empty + { "IFNBLANK", AD_IFNBLANK }, // #IFDEF: Conditional assembly follows based on rest of line not empty { "ELSE", AD_ELSE }, { "ELIF", AD_ELIF }, { "ENDIF", AD_ENDIF }, @@ -1072,10 +1079,12 @@ struct EvalFuncNames { }; EvalFuncNames aEvalFunctions[] = { - { "DEFINED", EF_DEFINED }, // DEFINED(label) 1 if label is defined - { "BLANK", EF_BLANK }, // BLANK() 1 if the contents within the parenthesis is empty - { "CONST", EF_CONST }, // CONST(label) 1 if label is a const label - { "SIN", EF_SIN }, // SIN(index, period, amplitude) + { "DEFINED", EF_DEFINED }, // DEFINED(label) 1 if label is defined + { "DEF", EF_DEFINED }, // DEFINED(label) 1 if label is defined + { "REFERENCED", EF_REFERENCED }, // REFERENCED(label) 1 if label has been referenced in this file + { "BLANK", EF_BLANK }, // BLANK() 1 if the contents within the parenthesis is empty + { "CONST", EF_CONST }, // CONST(label) 1 if label is a const label + { "TRIGSIN", EF_SIN }, // TRIGSIN(index, period, amplitude) }; static const int nDirectiveNames = sizeof(aDirectiveNames) / sizeof(aDirectiveNames[0]); @@ -1554,6 +1563,7 @@ public: bool constant; // the value of this label can not change bool external; // this label is globally accessible bool reference; // this label is accessed from external and can't be used for evaluation locally + bool referenced; // this label has been found via GetLabel and can be assumed to be referenced for some purpose } Label; @@ -1840,6 +1850,9 @@ public: StatusCode EvalStruct(strref name, int &value); StatusCode BuildEnum(strref name, strref declaration); + // Check if function is a valid function and if so evaluate the expression + bool EvalFunction(strref function, strref &expression, int &value); + // Calculate a value based on an expression. EvalOperator RPNToken_Merlin(strref &expression, const struct EvalContext &etx, EvalOperator prev_op, int16_t §ion, int &value); @@ -1851,7 +1864,7 @@ public: int ReptCnt() const; // Access labels - Label* GetLabel(strref label); + Label * GetLabel(strref label, bool reference_check = false); Label* GetLabel(strref label, int file_ref); Label* AddLabel(uint32_t hash); bool MatchXDEF(strref label); @@ -3436,6 +3449,56 @@ StatusCode Asm::EvalStruct(strref name, int &value) { return STATUS_OK; } +// +// +// EVAL FUNCTIONS +// +// + +bool Asm::EvalFunction(strref function, strref& expression, int &value) +{ + // all eval functions take a parenthesis with arguments + if (expression.get_first() != '(') { return false; } + + strref expRet = expression; + strref params = expRet.scoped_block_comment_skip(); + params.trim_whitespace(); + if (function.get_first() == '.') { ++function; } + for (int i = 0; i < nEvalFuncs; ++i) { + if (function.same_str(aEvalFunctions[i].name)) { + switch (aEvalFunctions[i].function) { + case EF_DEFINED: + expression = expRet; + value = GetLabel(params, true) != nullptr ? 1 : 0; + return true; + case EF_REFERENCED: + expression = expRet; + if (Label* label = GetLabel(params, true)) { value = label->referenced; return true; } + return false; + case EF_BLANK: + expression = expRet; + if (params.get_first() == '{') { params = params.scoped_block_comment_skip(); } + params.trim_whitespace(); + value = params.is_empty(); + return true; + case EF_CONST: + expression = expRet; + if (Label* label = GetLabel(params, true)) { + return label->constant; + } + return false; + case EF_SIN: + expression = expRet; + value = 0; // TODO: implement trigsin + return true; + } + return false; + } + } + return false; +} + + // // // EXPRESSIONS AND LATE EVALUATION @@ -3577,6 +3640,7 @@ EvalOperator Asm::RPNToken(strref &exp, const struct EvalContext &etx, EvalOpera } if (!pLabel && label.same_str("rept")) { value = etx.rept_cnt; return EVOP_VAL; } if (!pLabel) { if (StringSymbol *pStr = GetString(label)) { subexp = pStr->get(); return EVOP_EXP; } } + if (!pLabel) { if (EvalFunction(label, exp, value)) { return EVOP_VAL; } } if (!pLabel || !pLabel->evaluated) return EVOP_NRY; // this label could not be found (yet) value = pLabel->value; section = int16_t(pLabel->section); return pLabel->reference ? EVOP_XRF : EVOP_VAL; } @@ -4118,12 +4182,14 @@ StatusCode Asm::CheckLateEval(strref added_label, int scope_end, bool print_miss // // Get a label record if it exists -Label *Asm::GetLabel(strref label) { +Label *Asm::GetLabel(strref label, bool reference_check) { uint32_t label_hash = label.fnv1a(); uint32_t index = FindLabelIndex(label_hash, labels.getKeys(), labels.count()); while (index < labels.count() && label_hash == labels.getKey(index)) { if (label.same_str(labels.getValue(index).label_name)) { - return labels.getValues()+index; + Label *label = labels.getValues() + index; + if (!reference_check) { label->referenced = true; } + return label; } index++; } @@ -4138,7 +4204,9 @@ Label *Asm::GetLabel(strref label, int file_ref) { uint32_t index = FindLabelIndex(label_hash, labs.labels.getKeys(), labs.labels.count()); while (index < labs.labels.count() && label_hash == labs.labels.getKey(index)) { if (label.same_str(labs.labels.getValue(index).label_name)) { - return labs.labels.getValues()+index; + Label *label = labs.labels.getValues()+index; + label->referenced = true; + return label; } index++; } @@ -4332,6 +4400,7 @@ StatusCode Asm::AssignPoolLabel(LabelPool &pool, strref label) { pLabel->constant = true; pLabel->external = false; pLabel->reference = false; + pLabel->referenced = false; bool local = false; if (label[ 0 ] == '.' || label[ 0 ] == '@' || label[ 0 ] == '!' || label[ 0 ] == ':' || label.get_last() == '$') { @@ -4388,7 +4457,7 @@ StatusCode Asm::AssignLabel(strref label, strref expression, bool make_constant) if (pLabel->constant && pLabel->evaluated && val!=pLabel->value) { return (status==STATUS_NOT_READY) ? STATUS_OK : ERROR_MODIFYING_CONST_LABEL; } - } else { pLabel = AddLabel(label.fnv1a()); } + } else { pLabel = AddLabel(label.fnv1a()); pLabel->referenced = false; } pLabel->label_name = label; pLabel->pool_name.clear(); @@ -4420,6 +4489,7 @@ StatusCode Asm::AddressLabel(strref label) bool constLabel = false; if (!pLabel) { pLabel = AddLabel(label.fnv1a()); + pLabel->referenced = false; // if this label already exists but is changed then it may already have been referenced } else if (pLabel->constant && pLabel->value!=CurrSection().GetPC()) { return ERROR_MODIFYING_CONST_LABEL; } else { constLabel = pLabel->constant; } @@ -5114,6 +5184,7 @@ StatusCode Asm::Directive_XREF(strref label) pLabelXREF->external = true; pLabelXREF->constant = false; pLabelXREF->reference = true; + pLabelXREF->referenced = false; // referenced is only within the current object file } return STATUS_OK; } @@ -5549,6 +5620,41 @@ StatusCode Asm::ApplyDirective(AssemblerDirective dir, strref line, strref sourc } break; + case AD_IFCONST: + if (NewConditional()) { // Start new conditional block + CheckConditionalDepth(); // Check if nesting + // ifdef doesn't need to evaluate the value, just determine if it exists or not + strref label_name = line.split_range_trim(label_end_char_range); + if (Label* label = GetLabel(label_name, etx.file_ref)) { + if (label->constant) { ConsumeConditional(); } + else { SetConditional(); } + } + else { SetConditional(); } + } + break; + + case AD_IFBLANK: + if (NewConditional()) { // Start new conditional block + CheckConditionalDepth(); // Check if nesting + line.trim_whitespace(); + if (line.is_empty()) + ConsumeConditional(); + else + SetConditional(); + } + break; + + case AD_IFNBLANK: + if (NewConditional()) { // Start new conditional block + CheckConditionalDepth(); // Check if nesting + line.trim_whitespace(); + if (!line.is_empty()) + ConsumeConditional(); + else + SetConditional(); + } + break; + case AD_ELSE: if (ConditionalAsm()) { if (ConditionalConsumed()) @@ -7215,7 +7321,7 @@ StatusCode Asm::ReadObjectFile(strref filename, int link_to_section) int16_t f = (int16_t)l.flags; int external = f & ObjFileLabel::OFL_XDEF; if (external == ObjFileLabel::OFL_XDEF) { - if (!lbl) { lbl = AddLabel(name.fnv1a()); } // insert shared label + if (!lbl) { lbl = AddLabel(name.fnv1a()); lbl->referenced = false; } // insert shared label else if (!lbl->reference) { continue; } } else { // insert protected label while ((file_index + external) >= (int)externals.size()) { From eb3df4de889b9623335d32eb92e594f808b1b106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Fri, 10 Jan 2020 20:52:02 -0800 Subject: [PATCH 08/19] Label pools are 32 bit, added sizeof directive for structs, destructor for Symbol Stacks --- test/ca65directive.s | 13 ++++++--- x65.cpp | 63 +++++++++++++++++++++++++++++++++----------- 2 files changed, 57 insertions(+), 19 deletions(-) diff --git a/test/ca65directive.s b/test/ca65directive.s index 5b4f0ad..5fd136c 100644 --- a/test/ca65directive.s +++ b/test/ca65directive.s @@ -1,6 +1,6 @@ ; TEST CODE FROM EXOMIZER - -.org $2000 +cpu 65816 +.org $52000 .REPT 7 dc.b rept @@ -19,7 +19,7 @@ eval Pull original: test_stack eval Checking symbol is not const (0): .const(test_stack) const ConstAddress = $1000 -eval Checking symbol is const (0): .const(ConstAddress) +eval Checking symbol is const (1): .const(ConstAddress) eval This should be blank (1): .blank() eval This should be blank (1): .blank({}) @@ -33,6 +33,13 @@ eval Checking ifconst with non-const symbol, should not print: eval Checking ifconst with const symbol, this should print: .endif +struct MyStruct { + word addr + byte value +} + +eval Size of MyStruct (3): .sizeof(MyStruct) + zp_len_lo = $a7 zp_len_hi = $a8 diff --git a/x65.cpp b/x65.cpp index 0d8343a..bf4b605 100644 --- a/x65.cpp +++ b/x65.cpp @@ -323,6 +323,7 @@ enum EvalFuncs { EF_REFERENCED, // REFERENCED(label) 1 if label has been referenced in this file EF_BLANK, // BLANK() 1 if the contents within the parenthesis is empty EF_CONST, // CONST(label) 1 if label is a const label + EF_SIZEOF, // SIZEOF(struct) returns size of structs EF_SIN, // SIN(index, period, amplitude) }; @@ -1029,6 +1030,7 @@ DirectiveName aDirectiveNames[] { { "DUMMY", AD_DUMMY }, { "DUMMY_END", AD_DUMMY_END }, { "DS", AD_DS }, // Define space + { "RES", AD_DS }, // Reserve space { "SCOPE", AD_SCOPE }, // SCOPE: Begin ca65 style scope { "ENDSCOPE", AD_ENDSCOPE },// ENDSCOPR: End ca65 style scope { "PUSH", AD_PUSH }, @@ -1084,6 +1086,7 @@ EvalFuncNames aEvalFunctions[] = { { "REFERENCED", EF_REFERENCED }, // REFERENCED(label) 1 if label has been referenced in this file { "BLANK", EF_BLANK }, // BLANK() 1 if the contents within the parenthesis is empty { "CONST", EF_CONST }, // CONST(label) 1 if label is a const label + { "SIZEOF", EF_SIZEOF}, // SIZEOF(struct) returns size of structs { "TRIGSIN", EF_SIN }, // TRIGSIN(index, period, amplitude) }; @@ -1617,10 +1620,10 @@ typedef struct sLabelPool { strref pool_name; int16_t numRanges; // normally 1 range, support multiple for ease of use int16_t depth; // Required for scope closure cleanup - uint16_t start; - uint16_t end; - uint16_t scopeUsed[MAX_SCOPE_DEPTH][2]; // last address assigned + scope depth - StatusCode Reserve(uint16_t numBytes, uint16_t &ret_addr, uint16_t scope); + uint32_t start; + uint32_t end; + uint32_t scopeUsed[MAX_SCOPE_DEPTH][2]; // last address assigned + scope depth + StatusCode Reserve(uint32_t numBytes, uint32_t &ret_addr, uint16_t scope); void ExitScope(uint16_t scope); } LabelPool; @@ -1711,6 +1714,7 @@ public: StatusCode PullSymbol(Label* symbol); void PushSymbol(StringSymbol* string); StatusCode PullSymbol(StringSymbol* string); + ~SymbolStackTable(); }; // The state of the assembler @@ -2017,6 +2021,17 @@ StatusCode SymbolStackTable::PullSymbol(StringSymbol* string) return STATUS_OK; } +SymbolStackTable::~SymbolStackTable() +{ + for (size_t i = 0; i < size; ++i) { + if (keys[i] && values[i]) { + delete values[i]; + values[i] = nullptr; + keys[i] = 0; + } + } +} + // Clean up work allocations @@ -3474,7 +3489,7 @@ bool Asm::EvalFunction(strref function, strref& expression, int &value) case EF_REFERENCED: expression = expRet; if (Label* label = GetLabel(params, true)) { value = label->referenced; return true; } - return false; + return true; case EF_BLANK: expression = expRet; if (params.get_first() == '{') { params = params.scoped_block_comment_skip(); } @@ -3484,9 +3499,25 @@ bool Asm::EvalFunction(strref function, strref& expression, int &value) case EF_CONST: expression = expRet; if (Label* label = GetLabel(params, true)) { - return label->constant; + value = label->constant ? 1 : 0; } - return false; + return true; + case EF_SIZEOF: + { + expression = expRet; + uint32_t hash = params.fnv1a(); + uint32_t index = FindLabelIndex(hash, labelStructs.getKeys(), labelStructs.count()); + value = 0; + while (index < labelStructs.count() && labelStructs.getKey(index) == hash) { + if (params.same_str_case(labelStructs.getValue(index).name)) { + value = (labelStructs.getValues() + index)->size; + break; + } + ++index; + } + return true; + } + case EF_SIN: expression = expRet; value = 0; // TODO: implement trigsin @@ -4299,7 +4330,7 @@ StatusCode Asm::AddLabelPool(strref name, strref args) { // check that there is at least one valid address int ranges = 0; int num32 = 0; - uint16_t aRng[256]; + uint32_t aRng[256]; struct EvalContext etx; SetEvalCtxDefaults(etx); while (strref arg = args.split_token_trim(',')) { @@ -4314,8 +4345,8 @@ StatusCode Asm::AddLabelPool(strref name, strref args) { if (addr1<=addr0||addr0<0) { return ERROR_POOL_RANGE_EXPRESSION_EVAL; } - aRng[ranges++] = (uint16_t)addr0; - aRng[ranges++] = (uint16_t)addr1; + aRng[ranges++] = (uint32_t)addr0; + aRng[ranges++] = (uint32_t)addr1; num32 += (addr1-addr0+15)>>4; if (ranges>2||num32>((MAX_POOL_BYTES+15)>>4)) { return ERROR_POOL_RANGE_EXPRESSION_EVAL; @@ -4345,10 +4376,10 @@ StatusCode Asm::AssignPoolLabel(LabelPool &pool, strref label) { strref size = label; label = size.split_label(); if (strref::is_number(size.get_first())) { - uint16_t bytes = (uint16_t)size.atoi(); + uint32_t bytes = (uint32_t)size.atoi(); if (!bytes) { return ERROR_POOL_RANGE_EXPRESSION_EVAL; } if (!GetLabelPool(label)) { - uint16_t addr; + uint32_t addr; StatusCode error = pool.Reserve(bytes, addr, (uint16_t)brace_depth); if( error == STATUS_OK ) { // permanently remove this chunk from the parent pool @@ -4370,13 +4401,13 @@ StatusCode Asm::AssignPoolLabel(LabelPool &pool, strref label) { return ERROR_POOL_RANGE_EXPRESSION_EVAL; } strref type = label; - uint16_t bytes = 1; + uint32_t bytes = 1; int sz = label.find_at( '.', 1 ); if (sz > 0) { label = type.split( sz ); ++type; if (strref::is_number(type.get_first())) { - bytes = (uint16_t)type.atoi(); + bytes = (uint32_t)type.atoi(); } else { switch (strref::tolower(type.get_first())) { case 'l': bytes = 4; break; @@ -4387,7 +4418,7 @@ StatusCode Asm::AssignPoolLabel(LabelPool &pool, strref label) { } } if (GetLabel(label)) { return ERROR_POOL_LABEL_ALREADY_DEFINED; } - uint16_t addr; + uint32_t addr; StatusCode error = pool.Reserve(bytes, addr, (uint16_t)brace_depth); if (error!=STATUS_OK) { return error; } Label *pLabel = AddLabel(label.fnv1a()); @@ -4412,7 +4443,7 @@ StatusCode Asm::AssignPoolLabel(LabelPool &pool, strref label) { } // Request a label from a pool -StatusCode sLabelPool::Reserve(uint16_t numBytes, uint16_t &ret_addr, uint16_t scope) { +StatusCode sLabelPool::Reserve(uint32_t numBytes, uint32_t &ret_addr, uint16_t scope) { if (numBytes>(end-start)||depth==MAX_SCOPE_DEPTH) { return ERROR_OUT_OF_LABELS_IN_POOL; } if (!depth||scope!=scopeUsed[depth-1][1]) { scopeUsed[depth][0] = end; From b469ceef8c1cd10d9a5e04cb3cb5672bedf2a438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Sat, 11 Jan 2020 12:58:26 -0800 Subject: [PATCH 09/19] Expermenting with starting over on the x65 documentation --- docs/command_line_options.md | 116 +++++++++ docs/directives.md | 472 +++++++++++++++++++++++++++++++++++ docs/macro_samples.md | 164 ++++++++++++ docs/readme.md | 48 ++++ macros/x65macro.i | 2 +- 5 files changed, 801 insertions(+), 1 deletion(-) create mode 100644 docs/command_line_options.md create mode 100644 docs/directives.md create mode 100644 docs/macro_samples.md create mode 100644 docs/readme.md diff --git a/docs/command_line_options.md b/docs/command_line_options.md new file mode 100644 index 0000000..64a074b --- /dev/null +++ b/docs/command_line_options.md @@ -0,0 +1,116 @@ +# Command Line Options for x65 + +These are the current options for controlling x65 from the command line. + +## lst + -lst / -lst=(file.lst) + +Generate disassembly text from result(file or stdout) + +## tsl + -tsl=(file) + +generate listing file in TASS style + +## tl + + -tl=(file) + +Generate labels in TASS style + +## opcodes + -opcodes / -opcodes=(file.s) + +Use with -cpu=... to dump all available opcodes for that CPU (file or stdout) + +## endm + -endm + +macros end with endm or endmacro instead of scoped('{' - '}') and rept/repeat emds with endr instead of being scoped. + +## cpu + -cpu=[6502/6502ill/65c02/65c02wdc/65816] + +declare CPU type, use with argument + +## acc [65816] + -acc=[8/16] + +set the accumulator mode for 65816 at start, default is 8 bits + +## xy [65816] + -xy=8/16 + +set the index register mode for 65816 at start, default is 8 bits + + +## org + -org=$2000 or -org=4096 + +force assembly for first encountered non-specific address section at given address + +## kickasm + -kickasm + +use Kick Assembler syntax (in progress) + +## merlin + -merlin + +use Merlin syntax + +## c64 + -c64 + +(default) Include 2 byte load address in binary output + +## a2b + -a2b + +Produce an Apple II Dos 3.3 Binary + +## bin + -bin + +Produce raw binary + +## a2p + -a2p + +Produce an Apple II ProDos Binary + +## a2o + -a2o + +Produce an Apple II GS OS executable (relocatable) + +## mrg + -mrg + +Force merge all sections (use with -a2o) + +## sect + -sect + +display sections loaded and built + +## sym + -sym (file.sym) + +generate symbol file + +## obj + -obj (file.x65) + +Produce an object file instead of a binary for later linking + +## vice + -vice (file.vs) + +export a vice monitor command file (including vice symbols) + +## xrefimp + -xrefimp + +import directive means xref, not include/incbin and export directive means xdef, not export section. + diff --git a/docs/directives.md b/docs/directives.md new file mode 100644 index 0000000..67a85ea --- /dev/null +++ b/docs/directives.md @@ -0,0 +1,472 @@ +# X65 Directives + +Directives are commands that control the assembler and include controls for conditional assembly, exporting multible binary files, creating linkable object files etc. + +The directives are case insensitive and can be preceeded by a dot + + .rept 8 { dc.b 1<: + +for example + + EVAL Current Address: * + + test_stack = 0 + eval Checking referenced function, Should be 0: .referenced(test_stack) + eval Checking defined function, Should be 1: .defined(test_stack) + +## DC, DV + +Declare constant / Declare Value. The directive can be specific by appending .b for byte size, .w for word size, .t for triple size or .l for long size. The default size is 1 byte. + + Test: + dc.b $20, *-Test + +## BYTE, BYTES + +Same as dc.b + +## WORD, WORDS + +Same as dc.w + +## LONG + +Same as dc.l + +## TEXT + +Add text to output, the order of characters can be changed with a string symbol, for instance: + + STRING FontOrder = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!#$%&*" + TEXT [FontOrder] "HELLO #1!" + +## INCLUDE + +Load and assemble another file at this address. + +## INCBIN + +Load another file and include as binary data at this address. + +## INCSYM + +Load symbols from a .sym file + + INCSYM "Main.Sym" + +Symbols can also be selected by a list on the same line: + + INCSYM InitMain, UpdateMain, ShutdownMain, "Main.Sym" + +## INCDIR + +Add a folder to search for include files. + +## IMPORT + +Generic version of INCLUDE, INCBIN with custom arguments + + ; include a raw binary file + IMPORT "data.bin" + IMPORT binary "data.bin" + + ; include a source file + IMPORT source "defines.i" + + ; include a binary C64 file omitting the load address (first 2 bytes) + IMPORT c64 "main.prg" + + ; include a text file + IMPORT text "text.txt" + IMPORT text petscii "petscii.txt" + IMPORT text petscii_shifted "petscii.txt" + IMPORT text "custom.txt" ; see TEXT directive + +Note that if the command line argument -xdefimp is used then IMPORT is equivalent to XREF instead. + +## CONST + +Declare a symbol as const, assgning it again will cause an error. + + CONST VICBank = $4000 + +The constness of a symbol can be tested with the IFCONST directive or the CONST() eval function. + +## LABEL + +Optional directive create a mutable label, a way to specify non-CONST. It has no actual function. + +## STRING + +Declare a string symbol. Strings are a little bit limited but can be used for ordering characters in a TEXT declaration, or it can be used as assembler source. + + ; Some custom ordered text + TEXT [FontOrder] "MAKE IT SO!" + + ; Macro for (x=start; x End + { + if (-1 == End) & (Start<129) + string _ForEnd = "dex\nbpl _ForLoop" + else + string _ForEnd = "dex\ncpx #End\nbne _ForLoop" + endif + } + else + string _ForEnd = "" + endif + _ForLoop + } + + macro forend { + _ForEnd ; _ForEnd defined by a variation of the for macro + undef _ForEnd + undef _ForLoop + } + + for.x(5, 1) + lda buf1,x + sta buf2,x + forend + +## UNDEF + +Remove a symbol + + like_bananas = 1 + UNDEF like_bananas + +## LABPOOL, POOL + +Create a pool of addresses to assign as labels dynamically. This acts as a linear stack allocator for temporary storage and is deallocated when the scope ends if declared as a local symbol. + +Pools can be defined as part of a larger pool. + + pool zpGlobal $40-$f8 ; all zero page usage + zpGlobal pool zpLocal 16 ; temporary storage for regular functions + zpGlobal pool zpUtility 16 ; temporary storage for utility functions + zpGlobal pool zpInterrupt 8 ; temporary storage for interrupts + zpGlobal pool zpBuffer 64 ; per module storage + +Allocate from a pool by using the pool name + + zpBuffer zpIntroTimer.w ; frame counter, 2 bytes + zpBuffer zpScrollChar.8 ; 8 bytes of rol char for scroll + + { + zpLocal .zpSrc.w ; 2 bytes source address + zpLocal .zpDst.w ; 2 bytes dest address + .. + } ; at this point .zpSrc and .zpDst are deallocated and can be reused by other code. + { + zpLocal .zpCount ; 1 byte, same address as .zpSrc used above + } + +## IF + +Begin conditional code. Whatever lines follow will be assembled only if the expression following the IF evaluates to a non-zero value, the conditional block ends with ELSE, ELSEIF or ENDIF. + + conditional_code = 1 + IF conditional_code + ... ; this will be assembled because conditional_code is not zero + ENDIF + +## IFDEF, IFNDEF + +Similar to IF but only takes one symbol and the following lines will be assembled only if the symbol was defined previously (IFDEF) or not defined previously (IFNDEF) + + defined_symbol = 0 + IFDEF defined_symbol + ... ; this will be assembled because defined_symbol exists + ENDIF + +## IFCONST + +Similar to IF but like IFDEF only takes one symbol and the following lines will be assembled if the symbol is CONST. The symbol should be defined prior to testing it. + +CONST() is also an Eval Function that can be used to form more complex expressions using IF. IFCONST is equivalent to IF CONST() + +## IFBLANK, IFNBLANK + +Checks if the argument exists, mostly for use in macros to test if an argument exists. + +BLANK() is also an Eval Function, IFBLANK is equivalent to IF BLANK(...) + +## ELSE + +Requires a prior IF, the following line will be assembled only if the prior conditional block was not assembled. ELSE must be terminated by an ENDIF + + IF 1 + lda #0 + ELSE + lda #2 + ENDIF + +## ELIF + +Requires a prior IF and allows another expression check before ending the conditional blocks + + IFDEF monkey + lda #monkey_value + ELIF DEFINED(zebra) + lda #zebra_value + ELSE + lda #human_value + ENDIF + +## ENDIF + +Terminated a conditional segment of blocks. + +## STRUCT + +Declare a set of labels offset from a base address. + +Example: + + STRUCT ArtSet { + word ArtTiles + word ArtColors + word ArtMasks + byte bgColor + } + +Members of the structure can be referenced by the struct name dot member name: + + lda ArtSetData + ArtSet.bgColor + + ArtSetData: + ds SIZEOF(ArtSet) + +## ENUM + +Declare a set of incremental labels. Values can either be assigned or one more than the previous. The default first value is 0. + + enum PlayerIndex { + None = -1, + One, + Two + Three, + Four, + Count ; there are this many players + } + +Enum values can be referenced by enum name dot value name: + + ldx #PlayerIndex.One + { + inx + cpx #PlayerIndex.Count + bcc ! + } + + lda #PlayerIndex.Four + +## REPT, REPEAT + +Repeats the code within { and } following the REPT directive and counter. Within the REPT code the symbol REPT has the current iteration count, starting at 0. + + const words = 10 + + .rept words * 2 { dc.b rept / 2 } + +If the command line option -endm is used then REPT uses ENDR instead of the braced scope so the equivalent to the above would be + + .rept words * 2 + dc.b rept / 2 + .endr + +## A16, A8, XY16, XY8, I16, I8 + +Specific to 65816 assembly, controls the current accumulator and index register width (8 or 16 bits). Different assemblers use different names so various alternatives are allowed. + +## DUMMY, DUMMY_END + +Creates a dummy section between DUMMY and DUMMY_END directives. + +## DS, RES + +Define "section", Reserve. Reserves a number of bytes at the current address. The first argument is the number of bytes and the second argument is optional and is the byte to fill with. The main purpose is to reserve space in a BSS or ZP section. + +## SCOPE, ENDSCOPE + +A specialized version of a scope, does the same this as a brace scope (code between { and }) but additionally marks all labels defined within as local. An unimplemented feature is that the scope can be named and then labels defined can be accessed outside the scope as + +::