Mercurial > hg > Game > Cerium
view TaskManager/kernel/memory/AddrList.h @ 1531:4443d59a8210 draft
SDL.h in main.cc
author | yuhi@cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 07 Dec 2012 15:46:27 +0900 |
parents | d7486d6a5e37 |
children |
line wrap: on
line source
#ifndef INCLUDED_ADDR_LIST #define INCLUDED_ADDR_LIST #include "types.h" /* MainMemory 側の MemorySegment に近いかも? Iterator で使う、MainMemory 側の アドレスリスト */ typedef struct AddrList { memaddr addr; AddrList *next; }AddrList, *AddrListPtr; // 8 #endif