github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/debug/plan9obj/plan9obj.go (about)

     1  // Copyright 2014 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  
     5  /*
     6   * Plan 9 a.out constants and data structures
     7   */
     8  
     9  package plan9obj
    10  
    11  const (
    12  	Magic64 = 0x8000
    13  
    14  	Magic386   = (4*11+0)*11 + 7
    15  	MagicAMD64 = (4*26+0)*26 + 7 + Magic64
    16  	MagicARM   = (4*20+0)*20 + 7
    17  )