aboutsummaryrefslogtreecommitdiff
path: root/src/images/wavedrom/quad-ls.adoc
blob: 2cef49c62ac25b1f9774876e8aa2ea1a58cb92ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//## 14.1 Quad-Precision Load and Store Instructions

[wavedrom, ,svg]
....
{reg: [
  {bits: 7,  name: 'opcode',    attr: 'LOAD-FP',  type: 8},
  {bits: 5,  name: 'rd',        attr: 'dest',     type: 2},
  {bits: 3,  name: 'width',     attr: 'Q',        type: 8},
  {bits: 5,  name: 'rs1',       attr: 'base',     type: 4},
  {bits: 12, name: 'imm[11:0]', attr: 'offset',   type: 3},
]}
....

[wavedrom, ,svg]
....
{reg: [
  {bits: 7,  name: 'opcode',    attr: 'STORE-FP', type: 8},
  {bits: 5,  name: 'imm[4:0]',  attr: 'offset',   type: 3},
  {bits: 3,  name: 'width',     attr: 'Q',        type: 8},
  {bits: 5,  name: 'rs1',       attr: 'base',     type: 4},
  {bits: 5,  name: 'rs2',       attr: 'src',      type: 4},
  {bits: 12, name: 'imm[11:5]', attr: 'offset',   type: 3},
]}
....