blob: f25d2e1cf0143977db0bf930e20bc755ed1b5fb3 [file] [log] [blame]
Joel Sing9ef17992011-08-29 10:42:16 -04001// 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 Coxcb040d52014-09-04 23:05:18 -04005#include "textflag.h"
Keith Randall0273dc12013-08-07 12:20:05 -07006
7TEXT _rt0_386_openbsd(SB),NOSPLIT,$8
Russ Coxdfc22e292013-03-07 19:57:10 -08008 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 Randall0273dc12013-08-07 12:20:05 -070015TEXT main(SB),NOSPLIT,$0
Russ Cox7ba41e92014-09-03 11:11:16 -040016 JMP runtime·rt0_go(SB)