diff include/TaskManager/SpeNop2Ready.h @ 3:2356238ebea7

*** empty log message ***
author gongo
date Tue, 05 Feb 2008 20:22:50 +0900
parents
children 6a77b5e755ab
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/TaskManager/SpeNop2Ready.h	Tue Feb 05 20:22:50 2008 +0900
@@ -0,0 +1,27 @@
+#ifndef INCLUDED_SPE_NOP2READY
+#define INCLUDED_SPE_NOP2READY
+
+#ifndef INCLUDED_SPE_MANAGER
+#  include "SpeManager.h"
+#endif
+
+#ifndef INCLUDED_SPE_NOP
+#  include "SpeNop.h"
+#endif
+
+class SpeNop2Ready : public SpeNop {
+public:
+    /* constructor */
+    SpeNop2Ready(DmaManager*);
+
+    /* variables */
+    DmaManager* connector;    
+
+    /* functions */
+    void read(void);
+    void exec(void);
+    void write(void);
+    SpeTaskBase* next(SpeManager *, SpeTaskBase *);
+};
+
+#endif