diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-19 00:16:34 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-19 00:16:34 -0600 |
| commit | e7193272ff90a62f58b13725eee10b0796192949 (patch) | |
| tree | 21f935d6d53aa34002de4f019cd5f1680cb408e7 /rtl/gfx/gfx_rop.sv | |
| parent | b85aafbc7b3523862c78dd7b3d6deac8d639e61a (diff) | |
rtl/gfx: fix mem_address units to bytes instead of words
Diffstat (limited to 'rtl/gfx/gfx_rop.sv')
| -rw-r--r-- | rtl/gfx/gfx_rop.sv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rtl/gfx/gfx_rop.sv b/rtl/gfx/gfx_rop.sv index c0e3bf1..dcdafe0 100644 --- a/rtl/gfx/gfx_rop.sv +++ b/rtl/gfx/gfx_rop.sv @@ -11,7 +11,7 @@ module gfx_rop input logic rop_waitrequest, output logic rop_write, - output mem_word rop_writedata, + output vram_word rop_writedata, output half_coord rop_address, output linear_coord mask_addr, @@ -26,7 +26,7 @@ module gfx_rop } state; logic hi; - mem_word color_hi, color_lo; + vram_word color_hi, color_lo; frag_paint hold; assign {color_hi, color_lo} = hold.color; |
