- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for MOVW (0.02 sec)
-
src/cmd/asm/internal/asm/testdata/armerror.s
MOVM.DB [R0-R4], 4(R1) // ERROR "offset must be zero" MOVW CPSR, FPSR // ERROR "illegal combination" MOVW FPSR, CPSR // ERROR "illegal combination" MOVW CPSR, errors(SB) // ERROR "illegal combination" MOVW errors(SB), CPSR // ERROR "illegal combination" MOVW FPSR, errors(SB) // ERROR "illegal combination" MOVW errors(SB), FPSR // ERROR "illegal combination" MOVW F0, errors(SB) // ERROR "illegal combination"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 14.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/mips64.s
MOVV HI, R1 // 00000810 MOVV R1, LO // 00200013 MOVV R1, HI // 00200011 // LMOVW rreg ',' rreg // { // outcode(int($1), &$2, 0, &$4); // } MOVW R1, R2 // 00011004 MOVW LO, R1 // 00000812 MOVW HI, R1 // 00000810 MOVW R1, LO // 00200013 MOVW R1, HI // 00200011 MOVWU R14, R27 // 000ed83c001bd83e // LMOVH rreg ',' rreg // { // outcode(int($1), &$2, 0, &$4); // }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 08 12:17:12 UTC 2023 - 12.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc3.s
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" TEXT asmtest(SB),DUPOK|NOSPLIT,$0 MOVW $65536(R4), R5 // 1e020014de03800385f81000 MOVW $4096(R4), R5 // 3e000014de03800385f81000 MOVV $65536(R4), R5 // 1e020014de03800385f81000 MOVV $4096(R4), R5 // 3e000014de03800385f81000 ADD $74565, R4 // 5e020014de178d0384781000
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Feb 20 14:31:35 UTC 2025 - 10.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
MOVD $-8589934592, R1 // c01efffffffe MOVW $-131072, R2 // c021fffe0000 MOVH $-512, R3 // a739fe00 MOVB $-1, R4 // a749ffff MOVD $32767, n-8(SP) // e548f0107fff MOVD $-1, -524288(R1) // e3a010008071e548a000ffff MOVW $32767, n-8(SP) // e54cf0107fff MOVW $-32768, 4096(R2) // e3a020000171e54ca0008000 MOVH $512, n-8(SP) // e544f0100200
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
JMP foo(SB) // 00000050 JMP (R4) // 8000004c JMP 1(PC) // 00040050 MOVW $65536, R4 // 04020014 MOVW $4096, R4 // 24000014 MOVV $65536, R4 // 04020014 MOVB R4, R5 // 855c0000 MOVH R4, R5 // 85580000 MOVV $4096, R4 // 24000014 MOVW R4, R5 // 85001700 MOVWU R4, R5 // 8500df00 MOVV R4, R5 // 85001500 MOVBU R4, R5 // 85fc4303 SUB R4, R5, R6 // a6101100
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64error.s
MOV $8(SP), (X5) // ERROR "address load must target register" MOVB $8(SP), X5 // ERROR "unsupported address load" MOVH $8(SP), X5 // ERROR "unsupported address load" MOVW $8(SP), X5 // ERROR "unsupported address load" MOVF $8(SP), X5 // ERROR "unsupported address load" MOV $1234, 0(SP) // ERROR "constant load must target register"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu May 08 08:53:43 UTC 2025 - 24.8K bytes - Viewed (0) -
doc/asm.html
</p> <p> Instruction modifiers are appended to the instruction following a period. The only modifiers are <code>P</code> (postincrement) and <code>W</code> (preincrement): <code>MOVW.P</code>, <code>MOVW.W</code> </p> <p> Addressing modes: </p> <ul> <li> <code>R0->16</code> <br> <code>R0>>16</code> <br> <code>R0<<16</code> <br>
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
} func (p *Parser) branch(addr *obj.Addr, target *obj.Prog) { *addr = obj.Addr{ Type: obj.TYPE_BRANCH, Index: 0, } addr.Val = target } // asmInstruction assembles an instruction. // MOVW R9, (R10) func (p *Parser) asmInstruction(op obj.As, cond string, a []obj.Addr) { // fmt.Printf("%s %+v\n", op, a) prog := &obj.Prog{ Ctxt: p.ctxt, Pos: p.pos(), As: op, } switch len(a) {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0)