summaryrefslogtreecommitdiff
path: root/v/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'v/link.ld')
-rw-r--r--v/link.ld7
1 files changed, 1 insertions, 6 deletions
diff --git a/v/link.ld b/v/link.ld
index 4efeaaa..3ae9717 100644
--- a/v/link.ld
+++ b/v/link.ld
@@ -13,11 +13,6 @@
OUTPUT_ARCH( "riscv" )
-/* The ENTRY command specifies the entry point (ie. first instruction
- to execute). The symbol _start should be defined in each test. */
-
-ENTRY( _start )
-
/*----------------------------------------------------------------------*/
/* Sections */
/*----------------------------------------------------------------------*/
@@ -26,7 +21,7 @@ SECTIONS
{
/* text: test code section */
- . = 0x00002000;
+ . = 0;
.text :
{
*(.text)