Fix space issues in the source code
This commit is contained in:
parent
548010e36b
commit
676b36e455
|
|
@ -1,5 +1,5 @@
|
||||||
module test_mod ();
|
module test_mod ();
|
||||||
|
|
||||||
typedef enum logic [4:0] {ENUM_ELEM1, ENUM_ELEM2} test_enum_t;
|
typedef enum logic [4:0] {ENUM_ELEM1, ENUM_ELEM2} test_enum_t;
|
||||||
|
|
||||||
test_enum_t test_mem_addr_e;
|
test_enum_t test_mem_addr_e;
|
||||||
|
|
@ -15,4 +15,4 @@ module test_mod ();
|
||||||
else
|
else
|
||||||
$display("FAILED");
|
$display("FAILED");
|
||||||
end
|
end
|
||||||
endmodule
|
endmodule
|
||||||
|
|
|
||||||
|
|
@ -185,7 +185,7 @@ sf_countones_fail vvp_tests/sf_countones_fail.json
|
||||||
sf_isunknown_fail vvp_tests/sf_isunknown_fail.json
|
sf_isunknown_fail vvp_tests/sf_isunknown_fail.json
|
||||||
sf_onehot_fail vvp_tests/sf_onehot_fail.json
|
sf_onehot_fail vvp_tests/sf_onehot_fail.json
|
||||||
sf_onehot0_fail vvp_tests/sf_onehot0_fail.json
|
sf_onehot0_fail vvp_tests/sf_onehot0_fail.json
|
||||||
single_element_array vvp_tests/single_element_array.json
|
single_element_array vvp_tests/single_element_array.json
|
||||||
struct_enum_partsel vvp_tests/struct_enum_partsel.json
|
struct_enum_partsel vvp_tests/struct_enum_partsel.json
|
||||||
struct_field_left_right vvp_tests/struct_field_left_right.json
|
struct_field_left_right vvp_tests/struct_field_left_right.json
|
||||||
struct_nested1 vvp_tests/struct_nested1.json
|
struct_nested1 vvp_tests/struct_nested1.json
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ static PLI_INT32 monitor_calltf(char*xx)
|
||||||
delay.real = 0.0;
|
delay.real = 0.0;
|
||||||
|
|
||||||
assert(argv);
|
assert(argv);
|
||||||
|
|
||||||
handle = vpi_scan(argv);
|
handle = vpi_scan(argv);
|
||||||
assert(handle && (vpi_get(vpiType, handle) == vpiConstant));
|
assert(handle && (vpi_get(vpiType, handle) == vpiConstant));
|
||||||
#ifdef TEST_SCALED_TIME
|
#ifdef TEST_SCALED_TIME
|
||||||
|
|
|
||||||
|
|
@ -99,10 +99,10 @@ hello_tf normal hello_tf.c hello_tf.log
|
||||||
hello_vpi normal hello_vpi.c hello.log
|
hello_vpi normal hello_vpi.c hello.log
|
||||||
hello_vpi2 normal hello_vpi2.c hello2.log vpi/hello_vpi1.c
|
hello_vpi2 normal hello_vpi2.c hello2.log vpi/hello_vpi1.c
|
||||||
listparams normal listparams.c listparams.log
|
listparams normal listparams.c listparams.log
|
||||||
nextsimtime_cb1 normal nextsimtime_cb1.c nextsimtime_cb1.gold
|
nextsimtime_cb1 normal nextsimtime_cb1.c nextsimtime_cb1.gold
|
||||||
nextsimtime_cb2 normal nextsimtime_cb2.c nextsimtime_cb2.gold
|
nextsimtime_cb2 normal nextsimtime_cb2.c nextsimtime_cb2.gold
|
||||||
nextsimtime_cb3 normal nextsimtime_cb3.c nextsimtime_cb3.gold
|
nextsimtime_cb3 normal nextsimtime_cb3.c nextsimtime_cb3.gold
|
||||||
nextsimtime_cb4 normal nextsimtime_cb4.c nextsimtime_cb4.gold
|
nextsimtime_cb4 normal nextsimtime_cb4.c nextsimtime_cb4.gold
|
||||||
memmon normal,-g1995 memmon.c memmon.log
|
memmon normal,-g1995 memmon.c memmon.log
|
||||||
memwide normal memwide.cc memwide.log
|
memwide normal memwide.cc memwide.log
|
||||||
mipname normal mipname.c mipname.log
|
mipname normal mipname.c mipname.log
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ extern void vvp_init(const char *logfile_name, int argc, char*argv[]);
|
||||||
* when it is complete. The argument is the path to a VVP file containing
|
* when it is complete. The argument is the path to a VVP file containing
|
||||||
* compiled Verilog code.
|
* compiled Verilog code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern int vvp_run(const char *design_path);
|
extern int vvp_run(const char *design_path);
|
||||||
|
|
||||||
/* vpip_load_module(module_name) may be called after vvp_init() and before
|
/* vpip_load_module(module_name) may be called after vvp_init() and before
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue