/*----------------------------------------------------------------------- / PFF - Low level disk interface module include file (C)ChaN, 2010 /-----------------------------------------------------------------------*/ #ifndef _DISKIO #include "integer.h" /* Status of Disk Functions */ typedef BYTE DSTATUS; /* Results of Disk Functions */ typedef enum { RES_OK = 0, /* 0: Function succeeded */ RES_ERROR, /* 1: Disk error */ RES_NOTRDY, /* 2: Not ready */ RES_PARERR /* 3: Invalid parameter */ } DRESULT; /*---------------------------------------*/ /* Prototypes for disk control functions */ DSTATUS disk_initialize (void); DRESULT disk_readp (BYTE*, DWORD, WORD, WORD); #define STA_NOINIT 0x01 /* Drive not initialized */ #define STA_NODISK 0x02 /* No medium in the drive */ #define _DISKIO #endif cbee4a5c089bc9bf1583e8e0b9a34c65236d02'/> [no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/mem02/tb_ram4.vhdl
blob: 4a109d14bd65b841278e6290c42da165734fffb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51