minor update

This commit is contained in:
Blaise Tine
2021-09-30 06:14:05 -07:00
parent fe14a9933d
commit 29aba92bf1
5 changed files with 35 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ typedef struct packed {
logic is_signaling;
} fp_class_t;
`define FP_CLASS_BITS $bits(fp_class_t)
`define FP_CLASS_BITS $bits(fpu_types::fp_class_t)
typedef struct packed {
logic NV; // 4-Invalid
@@ -25,7 +25,7 @@ typedef struct packed {
logic NX; // 0-Inexact
} fflags_t;
`define FFLAGS_BITS $bits(fflags_t)
`define FFLAGS_BITS $bits(fpu_types::fflags_t)
endpackage