Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.57K
1 Posted Topic
Re: svp comment parser ce code: [CODE]#define INSTNAME_MAX 16 #define MAX_PARAM 4 #define MAX_FIELD 8 /* instruction translation */ struct inst_tr_s{ char it_name[INSTNAME_MAX]; /* instruction name */ unsigned it_nparam; /* number of parameters */ unsigned it_param_bitlength[MAX_PARAM]; /* bitlengths of each parameter */ unsigned it_nfield; /* number of fields */ struct itfield_s … |