Split `"rd, rest"` into `(rd_str, rest_str)`.
(operands: &str)
| 440 | use crate::riscv::rv64i::Lw; |
| 441 | match mnemonic { |
| 442 | "lb" => AsmToken::Real(RealInstruction::Lb(Lb::new(rd, rs1, imm))), |
| 443 | "lbu" => AsmToken::Real(RealInstruction::Lbu(Lbu::new(rd, rs1, imm))), |
| 444 | "lw" => AsmToken::Real(RealInstruction::Lw(Lw::new(rd, rs1, imm))), |
| 445 | "ld" => AsmToken::Real(RealInstruction::Ld(Ld::new(rd, rs1, imm))), |
| 446 | _ => unreachable!(), |
| 447 | } |
| 448 | } |
no outgoing calls
no test coverage detected