Maintenance.

This commit is contained in:
Marcel Keller
2020-05-08 21:41:58 +10:00
parent 51e814cc62
commit 4ef6b6d873
265 changed files with 2674 additions and 6880 deletions

View File

@@ -105,7 +105,8 @@ BreakType Program<T>::execute(Processor<T>& Proc, U& dynamic_memory,
if (PC != -1)
Proc.PC = PC;
#ifdef DEBUG_ROUNDS
cout << typeid(T).name() << " starting at PC " << Proc.PC << endl;
cout << typeid(T).name() << " starting at PC " << Proc.PC << "/" <<
p.size() << endl;
#endif
unsigned int size = p.size();
size_t time = Proc.time;
@@ -113,7 +114,8 @@ BreakType Program<T>::execute(Processor<T>& Proc, U& dynamic_memory,
do
{
#ifdef DEBUG_EXE
cout << "execute " << time << "/" << Proc.PC << endl;
cout << "execute " << time << "/" << Proc.PC << " " << T::phase_name()
<< endl;
#endif
if (Proc.PC >= size)
{