source: mainline/uspace/lib/c/arch/ia64/src/entryjmp.S@ cb7be8f

Last change on this file since cb7be8f was cb7be8f, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Update headers in .S files that incorrectly use #-style comments

  • Property mode set to 100644
File size: 390 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2008 Jiri Svoboda
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <abi/asmtool.h>
8
9.text
10.explicit
11
12## void entry_point_jmp(void *entry_point, void *pcb);
13#
14# in0 (r32) contains entry_point
15# in1 (r33) contains pcb
16#
17# Jump to program entry point
18SYMBOL(entry_point_jmp)
19 # Pass pcb to the entry point in r2
20
21 mov b6 = r32
22 mov r2 = r33 ;;
23 br b6 ;;
Note: See TracBrowser for help on using the repository browser.