Skip to content

Missing base on some instructions #363

@BrianAnakPintar

Description

@BrianAnakPintar

Current value and location
Instructions such as sc_d, remuw, remw, mulw, divuw are missing base:64 for 64

Here's some example to showcase what I meant:

UDB

"sc_d": {
  "encoding": "00011------------011-----0101111",
  "variable_fields": [
      "aq",
      "rd",
      "rl",
      "rs1",
      "rs2"
  ],
  "extension": [
      "rv_a",
      "rv_zalrsc"
  ],
  "match": "0x1800302f",
  "mask": "0xf800707f"
  },

"remuw": {
  "encoding": "0000001----------111-----0111011",
  "variable_fields": [
      "rd",
      "rs1",
      "rs2"
  ],
  "extension": [
      "rv_m"
  ],
  "match": "0x200703b",
  "mask": "0xfe00707f"
  },

riscv-opcodes

"sc_d": {
  "encoding": "00011------------011-----0101111",
  "variable_fields": [
      "aq",
      "rd",
      "rl",
      "rs1",
      "rs2"
  ],
  "extension": [
      "rv64_a"
  ],
  "match": "0x1800302f",
  "mask": "0xf800707f"
  },

"remuw": {
    "encoding": "0000001----------111-----0111011",
    "variable_fields": [
        "rd",
        "rs1",
        "rs2"
    ],
    "extension": [
        "rv64_m"
    ],
    "match": "0x200703b",
    "mask": "0xfe00707f"
},

Metadata

Metadata

Assignees

Labels

data errorAn error in the database data

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions