summaryrefslogtreecommitdiff
path: root/inc/dram.h
blob: 5bc933e75b119bf595c8706b6a6cd2e6fcadbd53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef DRAM_H
#define DRAM_H
#include <storage.h>

class Dram : public Storage
{
  public:
	Dram();
	~Dram();

	int *load_line(int);

  private:
};

#endif /* DRAM_H_INCLUDED */