summaryrefslogtreecommitdiff
path: root/test.c
blob: 21e9c5d4d3103acc2c4a3862c596813a96b9a902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//  test.c
//  Temporary .c file where arbitrary tests are carried out.

#include"headers/include.h"
#include"headers/debug.h"

int main(int argc, char *argv[]){
    AppleOn();
    initInstructionTable();

    dStatusDump();
    
    fLDA(eImmediate, 0x01);
    fSTA(eAbsolute, 0x09);

    dStatusDump(); printf("\n");

    dPageDump(0x00);
}