Skip to content

Commit e155c6e

Browse files
authored
Merge pull request #102 from Neotron-Compute/fix-linker-scripts
Set entry point correctly in linker scripts.
2 parents 76c4260 + 37196d2 commit e155c6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

neotron-os/neotron-flash-0002.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MEMORY
3131
}
3232

3333
/* # Entry point = what the BIOS calls to start the OS */
34-
ENTRY(main);
34+
ENTRY(os_main);
3535

3636
/*
3737
Where the Transient Program Area starts.

neotron-os/neotron-flash-0802.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MEMORY
3131
}
3232

3333
/* # Entry point = what the BIOS calls to start the OS */
34-
ENTRY(main);
34+
ENTRY(os_main);
3535

3636
/*
3737
Where the Transient Program Area starts.

neotron-os/neotron-flash-1002.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ MEMORY
3535
}
3636

3737
/* # Entry point = what the BIOS calls to start the OS */
38-
ENTRY(main);
38+
ENTRY(os_main);
3939

4040
/*
4141
Where the Transient Program Area starts.

0 commit comments

Comments
 (0)