GSL was too problematic when used with GCC. Removed.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2017-11-20 19:17:49 +00:00
parent 67c27d4a3e
commit c513f0cab1
25 changed files with 109 additions and 99 deletions

View File

@@ -15,7 +15,7 @@ void EightBit::Processor::initialise() {
int EightBit::Processor::run(int limit) {
int current = 0;
while (GSL_LIKELY(powered()) && current < limit) {
while (LIKELY(powered()) && current < limit) {
current += singleStep();
}
return current;
@@ -35,7 +35,7 @@ void EightBit::Processor::fetchWord(register16_t& output) {
}
int EightBit::Processor::fetchExecute() {
if (GSL_LIKELY(powered()))
if (LIKELY(powered()))
return execute(fetchByte());
return 0;
}