Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MB_OSH (0.06 sec)

  1. src/cmd/internal/obj/arm/list5.go

    		return "MB_ST"
    	case REG_MB_ISH:
    		return "MB_ISH"
    	case REG_MB_ISHST:
    		return "MB_ISHST"
    	case REG_MB_NSH:
    		return "MB_NSH"
    	case REG_MB_NSHST:
    		return "MB_NSHST"
    	case REG_MB_OSH:
    		return "MB_OSH"
    	case REG_MB_OSHST:
    		return "MB_OSHST"
    	}
    
    	return fmt.Sprintf("Rgok(%d)", r-obj.RBaseARM)
    }
    
    func DRconv(a int) string {
    	s := "C_??"
    	if a >= C_NONE && a <= C_NCLASS {
    		s = cnames5[a]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	register["MB_ST"] = arm.REG_MB_ST
    	register["MB_ISH"] = arm.REG_MB_ISH
    	register["MB_ISHST"] = arm.REG_MB_ISHST
    	register["MB_NSH"] = arm.REG_MB_NSH
    	register["MB_NSHST"] = arm.REG_MB_NSHST
    	register["MB_OSH"] = arm.REG_MB_OSH
    	register["MB_OSHST"] = arm.REG_MB_OSHST
    
    	instructions := make(map[string]obj.As)
    	for i, s := range obj.Anames {
    		instructions[s] = obj.As(i)
    	}
    	for i, s := range arm.Anames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top