Statistics
| Branch: | Revision:

root / pc-bios / s390-ccw / start.S @ 80fea6e8

History | View | Annotate | Download (461 Bytes)

1
/*
2
 * First stage boot loader for virtio devices. The compiled output goes
3
 * into the pc-bios directory of qemu.
4
 *
5
 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
6
 *
7
 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8
 * your option) any later version. See the COPYING file in the top-level
9
 * directory.
10
 */
11

    
12
        .globl _start
13
_start:
14

    
15
larl	%r15, stack + 0x8000    /* Set up stack */
16
j	main                    /* And call C */