diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
commit | 3e45412327a2654a77944249962b3652e6142299 (patch) | |
tree | bc3bf69452afa055423cbe0c5cfa8ca357df6ccf /src/pkg/runtime/tiny/386/rt0.s | |
parent | c533680039762cacbc37db8dc7eed074c3e497be (diff) | |
download | golang-upstream/2011.01.12.tar.gz |
Imported Upstream version 2011.01.12upstream/2011.01.12
Diffstat (limited to 'src/pkg/runtime/tiny/386/rt0.s')
-rw-r--r-- | src/pkg/runtime/tiny/386/rt0.s | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/runtime/tiny/386/rt0.s b/src/pkg/runtime/tiny/386/rt0.s index ff7aae7ac..524ac7664 100644 --- a/src/pkg/runtime/tiny/386/rt0.s +++ b/src/pkg/runtime/tiny/386/rt0.s @@ -11,18 +11,18 @@ TEXT _rt0_386_tiny(SB), 7, $0 MOVL AX, SP // Set up memory hardware. - CALL msetup(SB) + CALL runtime·msetup(SB) // _rt0_386 expects to find argc, argv, envv on stack. // Set up argv=["kernel"] and envv=[]. SUBL $64, SP MOVL $1, 0(SP) - MOVL $kernel(SB), 4(SP) + MOVL $runtime·kernel(SB), 4(SP) MOVL $0, 8(SP) MOVL $0, 12(SP) JMP _rt0_386(SB) -DATA kernel+0(SB)/7, $"kernel\z" -GLOBL kernel(SB), $7 +DATA runtime·kernel(SB)/7, $"kernel\z" +GLOBL runtime·kernel(SB), $7 |