Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writePlan9Header (0.11 sec)

  1. src/cmd/link/internal/ld/asmb.go

    		fmt.Printf("lcsize=%d\n", lcSize)
    		fmt.Printf("total=%d\n", Segtext.Filelen+Segdata.Length+uint64(symSize)+uint64(lcSize))
    	}
    }
    
    // writePlan9Header writes out the plan9 header at the present position in the OutBuf.
    func writePlan9Header(buf *OutBuf, magic uint32, entry int64, is64Bit bool) {
    	if is64Bit {
    		magic |= 0x00008000
    	}
    	buf.Write32b(magic)
    	buf.Write32b(uint32(Segtext.Filelen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top