# VHDL LAB 7 Notes #### Algorithm: ```javascript= function divide_unsigned (n, d) { q = 0; r = n; while (r >= d) { q = q + 1; r = r - d; } return [q, r]; } ``` #### Operations: - RT Opertions with the q: - q <= q (idel) - q <= 0 (load) - q <= q + 1 (op) - RT Opertions with the r: - r <= r (idel) - r <= n_in (load) - r <= r - d (op) - RT Opertaions with the d: - d <= d (idel) - d <= d_in (load) - d <= d (op) #### ASMD Chart: <center>  Sequential Division ASMD Chart </center>
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up