You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
ArmAsm
15 lines
345 B
ArmAsm
1 year ago
|
// A minimal crt0.s that works along the stdlib.s file provided to give
|
||
|
// some resemblance of a functioning compilation target :)
|
||
|
//
|
||
|
// Copyright (c) 2023 Anton Lydike
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
.text
|
||
|
|
||
|
.globl _start
|
||
|
_start:
|
||
|
// TODO: read argc, argv from a0, a1
|
||
|
// maybe even find envptr?
|
||
|
jal main
|
||
|
jal exit
|