Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _rt0_mips64le_linux (0.31 sec)

  1. src/runtime/rt0_linux_mips64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    TEXT _rt0_mips64_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _rt0_mips64le_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  2. src/runtime/rt0_linux_mipsx.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle)
    
    #include "textflag.h"
    
    TEXT _rt0_mips_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _rt0_mipsle_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 797 bytes
    - Viewed (0)
Back to top