github.com/shijuvar/go@v0.0.0-20141209052335-e8f13700b70c/src/runtime/defs_plan9_386.go (about)

     1  package runtime
     2  
     3  const _PAGESIZE = 0x1000
     4  
     5  type ureg struct {
     6  	di    uint32 /* general registers */
     7  	si    uint32 /* ... */
     8  	bp    uint32 /* ... */
     9  	nsp   uint32
    10  	bx    uint32 /* ... */
    11  	dx    uint32 /* ... */
    12  	cx    uint32 /* ... */
    13  	ax    uint32 /* ... */
    14  	gs    uint32 /* data segments */
    15  	fs    uint32 /* ... */
    16  	es    uint32 /* ... */
    17  	ds    uint32 /* ... */
    18  	trap  uint32 /* trap _type */
    19  	ecode uint32 /* error code (or zero) */
    20  	pc    uint32 /* pc */
    21  	cs    uint32 /* old context */
    22  	flags uint32 /* old flags */
    23  	sp    uint32
    24  	ss    uint32 /* old stack segment */
    25  }