mirror of
https://github.com/RGBCube/serenity
synced 2025-07-14 19:47:35 +00:00

This adds just enough scaffolding to make cmake succeed. The build falls over immediately.
12 lines
266 B
ArmAsm
12 lines
266 B
ArmAsm
/*
|
|
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
.globl _invoke_entry
|
|
.hidden _invoke_entry
|
|
.type _invoke_entry,@function
|
|
_invoke_entry: # (argc, argv, envp, entry)
|
|
# FIXME: Possibly incomplete.
|
|
ret
|