-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
declaring multiple registers in bitfield #57
Comments
no. it is a single diagram editor. |
Hello @drom, Naive question: how can I render: https://observablehq.com/@drom/bitfield-testbox?collection=@drom/bitfield#cell-802 using the command line, provided I can run |
@lucasbrasilino you can run https://github.com/wavedrom/cli |
I want to be able to add long fiend name and I am not able to change the size. Is there any option? ], |
Hello
How can I declare multiple registers using bitfield .
For eg :
{reg: [
{bits: 7, name: 'opcode', attr: 'OP-IMM'},
{bits: 5, name: 'rd', attr: 'dest'},
{bits: 3, name: 'func3', attr: ['ADDI']},
{bits: 5, name: 'rs1', attr: 'src'},
{bits: 12, name: 'imm[11:0]', attr: 'I-immediate[11:0]', type: 3}
],
}
works just fine. If I want to create another reg or a duplicate of this ; How can I do it in the editor ?
The text was updated successfully, but these errors were encountered: