コード例 #1
0
        protected ER DefineSysIF(uint Addr, int Size, uint Substitute, ISystemIF SystemIF)
        {
            TSystemIFItem Item = new TSystemIFItem();

            Item.Addr       = Addr;
            Item.Size       = Size;
            Item.Substitute = Substitute;
            Item.SystemIF   = SystemIF;

            m_SystemIFList.AddLast(Item);

            return(ER.E_OK);
        }
コード例 #2
0
ファイル: Kernel.cs プロジェクト: h7ga40/uITron3
        protected ER DefineSysIF(uint Addr, int Size, uint Substitute, ISystemIF SystemIF)
        {
            TSystemIFItem Item = new TSystemIFItem();

            Item.Addr = Addr;
            Item.Size = Size;
            Item.Substitute = Substitute;
            Item.SystemIF = SystemIF;

            m_SystemIFList.AddLast(Item);

            return ER.E_OK;
        }