We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77bbbba + 7a18d54 commit 460c091Copy full SHA for 460c091
src/html/html_cli.rs
@@ -217,8 +217,8 @@ fn parse_register(
217
let idxs = format!("[{idx}]");
218
f.name = f.name.replace("[%s]", &idxs).replace("%s", &idxs);
219
f.bit_range = BitRange::from_offset_width(
220
- f.bit_offset(),
221
- f.bit_width() + (i as u32) * d.dim_increment,
+ f.bit_offset() + (i as u32) * d.dim_increment,
+ f.bit_width(),
222
);
223
f.description = f
224
.description
0 commit comments