Skip to content

Commit 37196d2

Browse files
committed
Set entry point correctly in linker scripts.
1 parent 76c4260 commit 37196d2

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)