Avr8bit-emulator
An emulator for the Atmel AVR 8-bit microcontroller
Loading...
Searching...
No Matches
core.c
Go to the documentation of this file.
1#include "core.h"
2
3void inc_pc(struct CORE *core) {
4 core->PC = core->PC + 1;
5}
void inc_pc(struct CORE *core)
Definition core.c:3
Core structure containing general purpose registers, program counter, stack pointer,...
Definition core.h:67
uint32_t PC
Definition core.h:69