Joel Sing | 9ef1799 | 2011-08-29 10:42:16 -0400 | [diff] [blame] | 1 | // Copyright 2009 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Russ Cox | cb040d5 | 2014-09-04 23:05:18 -0400 | [diff] [blame] | 5 | #include "textflag.h" |
Keith Randall | 0273dc1 | 2013-08-07 12:20:05 -0700 | [diff] [blame] | 6 | |
| 7 | TEXT _rt0_386_openbsd(SB),NOSPLIT,$8 |
Russ Cox | dfc22e29 | 2013-03-07 19:57:10 -0800 | [diff] [blame] | 8 | MOVL 8(SP), AX |
| 9 | LEAL 12(SP), BX |
| 10 | MOVL AX, 0(SP) |
| 11 | MOVL BX, 4(SP) |
| 12 | CALL main(SB) |
| 13 | INT $3 |
| 14 | |
Keith Randall | 0273dc1 | 2013-08-07 12:20:05 -0700 | [diff] [blame] | 15 | TEXT main(SB),NOSPLIT,$0 |
Russ Cox | 7ba41e9 | 2014-09-03 11:11:16 -0400 | [diff] [blame] | 16 | JMP runtime·rt0_go(SB) |