Skip to content

Commit

Permalink
Changed load address to 0x0801
Browse files Browse the repository at this point in the history
  • Loading branch information
neilsf committed Aug 31, 2021
1 parent 82bc60e commit e8b7c48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.3.11
v2.3.12
2 changes: 1 addition & 1 deletion source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ string listfile="";
* Version
*/

string compiler_version = "v2.3.11";
string compiler_version = "v2.3.12";

/**
* Application entry point
Expand Down
3 changes: 1 addition & 2 deletions source/program.d
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class Program
this.compiler_options = [
"civars" : 0,
"basic_loader" : 1,
"start_address" : 0x0800
"start_address" : 0x0801
];

this.if_stack = Stack(this, "ENDIF without IF");
Expand Down Expand Up @@ -322,7 +322,6 @@ class Program
asm_code ~= "\tORG $" ~ start_addr ~ "\n";

if(this.compiler_options["basic_loader"] == 1) {
asm_code ~= "\tHEX 00\n";
asm_code ~= "\tDC.W next_line\n";
asm_code ~= "\tDC.W 2018\n";
asm_code ~= "\tHEX 9e\n";
Expand Down

0 comments on commit e8b7c48

Please sign in to comment.