支持的格式有四种:INTEL-HEX,ACTEL_HEX ,Actel BINARY,MOTOROLA S<br />格式说明如下:<br />Actel BINARY<br /><br />The simplest memory format. Each memfile contains as many rows as there are words. Each row is one word, where the number of binary digits equals the word size in bits. This format has a very strict syntax. The word size and number of rows must match exactly. The file extension is MEM; for example, file1.mem. <br /><br />Example: Depth 6, Width is 8<br /><br />01010011<br /><br />11111111<br /><br />01010101<br /><br />11100010<br /><br />10101010<br /><br />11110000<br /><br />INTEL-HEX<br /><br />Industry standard file. Extensions are HEX and IHX. For example, file2.hex or file3.ihx. <br /><br />MOTOROLA S<br /><br />Industry standard file. File extension is S, such as file4.s<br /><br />Actel-HEX<br /><br />A simple address/data pair format. All the addresses that have content are specified. Addresses with no content specified will be initialized to zeroes. The file extension is AHX, such as filex.ahx. The format is: <br /><br />AA:DDDDD<br /><br />The data size must match the word size. Example: Depth 6, Width is 8<br /><br />00:FF<br /><br />11:BB<br /><br />All other addresses will be zeroes.<br />
|