thiagoauler-apple1/src/opcodes.c

356 lines
4.2 KiB
C

#include <stdio.h>
#include "inc/opcodes.h"
#include "inc/memory.h"
db fetch_operand(dw address)
{
mem.mar = address;
mem_read();
return mem.mdr;
}
dw fetch_address()
{
dw word;
db low_byte;
db high_byte;
low_byte = fetch_operand(pc);
pc = pc + 1;
high_byte = fetch_operand(pc);
pc = pc + 1;
word = high_byte << 8; // shifts high byte to its place
word = word | low_byte; // appends low byte to form the complete word
return word;
}
db decode_operand()
{
db operand;
db byte;
dw word;
switch (addressing_mode)
{
case immediate:
operand = fetch_operand(pc);
pc = pc + 1;
break;
case zero_page:
byte = fetch_operand(pc);
word = 0x0000 | byte;
operand = fetch_operand(word);
pc = pc + 1;
break;
case zero_page_x:
byte = fetch_operand(pc);
word = 0x0000 | byte;
word = word + x;
operand = fetch_operand(word);
pc = pc + 1;
break;
case zero_page_y:
byte = fetch_operand(pc);
word = 0x0000 | byte;
word = word + y;
operand = fetch_operand(word);
pc = pc + 1;
break;
case accumulator:
operand = ac;
break;
}
return operand;
}
void xxx()
{
// invalid opcode
return nop();
}
void adc()
{
// add memory to accumalator with carry
}
void and()
{
// and memory with accumulator
}
void asl()
{
// shift left one bit (memory on accumulator)
}
void bcc()
{
// branch on carry clear
}
void bcs()
{
// branch on carry set
}
void beq()
{
// branch on result zero
}
void bit()
{
// test bits in memory with accumulator
}
void bmi()
{
// branch on result minus
}
void bne()
{
// branch on result not zero
}
void bpl()
{
// branch on result plus
}
void brk()
{
// force break
}
void bvc()
{
// branch on overflow clear
}
void bvs()
{
// branch on overflow set
}
void clc()
{
// clear carry flag
}
void cld()
{
// clear decimal mode
}
void cli()
{
// clear interrupt disable bit
}
void clv()
{
// clear overflow flag
}
void cmp()
{
// compare memory with accumulator
}
void cpx()
{
// compare memory and index x
}
void cpy()
{
// compare memory and index y
}
void dec()
{
// decrement memory by one
}
void dex()
{
// decrement index x by one
}
void dey()
{
// decrement index y by one
}
void eor()
{
// exclusive-or memory with accumulator
}
void inc()
{
// increment memory by one
}
void inx()
{
// increment index x by one
}
void iny()
{
// increment index y by one
}
void jmp()
{
// jump to new location
}
void jsr()
{
// jump to new location saving return address
}
void lda()
{
// load accumulator with memory
}
void ldx()
{
// load index x with memory
}
void ldy()
{
// load index y with memory
}
void lsr()
{
// shift one bit right (memory or accumulator)
}
void nop()
{
// no operation
}
void ora()
{
// or memory with accumulator
}
void pha()
{
// push accumulator on stack
}
void php()
{
// push processor status on stack
}
void pla()
{
// pull accumulator from stack
}
void plp()
{
// pull processor status from stack
}
void rol()
{
// rotate on bit left (memory or accumulator)
}
void ror()
{
// rotate on bit right (memory or accumulator)
}
void rti()
{
// return from interrupt
}
void rts()
{
// retrun from subroutine
}
void sbc()
{
// subtract memory from accumulator with borrow
}
void sec()
{
// set carry flag
}
void sed()
{
// set decimal flag
}
void sei()
{
// set interrupt disable status
}
void sta()
{
// store accumulator in memory
}
void stx()
{
// store index x in memory
}
void sty()
{
// store index y in memory
}
void tax()
{
// transfer accumulator to index x
}
void tay()
{
// transfer accumulator to index y
}
void tsx()
{
// transfer stack pointer to index x
}
void txa()
{
// transfer index x to accumulator
}
void txs()
{
// transfer index x to stack pointer
}
void tya()
{
// transfer index y to accumulator
}