Tools
scv.txt
Associated article: System Verification with SCV
Tags: Tools
Published source code accompanying the article by George F. Frazier in which he examines the SystemC Verification Library, which speeds up verification of electronic designs.
System Verification with SCV
by George F. Frazier
Listing One
enum PROCESS_JPEG_EVENTS {RECEIVE, STORE, DECODE, MANIPULATE, ENCODE, SEND};
int jpeg_stream()
{
scv_smart_ptr<PROCESS_JPEG_EVENTS> jpg;
scv_bag<PROCESS_JPEG_EVENTS> jpg_...


