示例#1
0
        public void FetchOperationFromMemory()
        {
            m_Fetcher.SetFetchFromAddress(new MemoryAddress(0), new MemoryBankAddress(0));
            var t_Operation = m_Fetcher.FetchOperation();

            t_Operation.Should().BeOfType <NoOp>();
        }
示例#2
0
 private IOperation _FetchOperation()
 {
     return(m_Fetcher.FetchOperation());
 }