Skip to content

Instantly share code, notes, and snippets.

@jz5
Created December 8, 2013 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jz5/7852906 to your computer and use it in GitHub Desktop.
Save jz5/7852906 to your computer and use it in GitHub Desktop.
Motorola S-record file read
initial begin
int fd, ret;
string line;
int type_no, size;
bit [31:0] addr;
bit [7:0] data []; // dynamic array
fd = $fopen("./hexfile", "r");
while (!$feof(fd)) begin
ret = $fgets(line, fd); // 1行リード
if (line.substr(0, 0) != "S") begin // S から始まらない場合次の行へ
continue;
end
type_no = line.substr(1, 1).atoi(); // レコードタイプ
size = line.substr(2, 3).atohex(); // レコード長
case (type_no)
1: begin // S1
// アドレス
addr = line.substr(4, 7).atohex();
// データを 1byte ずつ処理
data = new [size - 3]; // MEMO: データ長は (アドレス2byte + チェックサム1byte) を引いたサイズ
for (int i = 0; i < size - 3; i++) begin
data[i] = line.substr(8 + i * 2, 9 + i * 2).atohex(); // MEMO: 9文字目から2文字ずつ
end
$display("S1 addr: %2h", addr);
end
9: begin // S9
$display("S9");
break;
end
endcase
end
$fclose(fd);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment