blob: 44c9b7575c3e85e6edfbd21d04469a5021d787b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef RAMINIT_H
#define RAMINIT_H
struct mem_controller {
unsigned node_id;
device_t f0, f1, f2, f3;
uint8_t channel0[4];
uint8_t channel1[4];
};
#endif /* RAMINIT_H */
|