-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmemory.h
46 lines (24 loc) · 1.02 KB
/
memory.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#pragma once
#include "state.h"
byte fetch_byte(State6502* state);
word fetch_word(State6502* state);
word read_word(State6502* state, word address);
word read_word_wrap(State6502* state, word address);
word get_address_zero_page(State6502* state);
byte get_byte_zero_page(State6502* state);
word get_address_zero_page_x(State6502* state);
byte get_byte_zero_page_x(State6502* state);
word get_address_zero_page_y(State6502* state);
byte get_byte_zero_page_y(State6502* state);
word get_address_absolute(State6502* state);
byte get_byte_absolute(State6502* state);
word get_address_absolute_x(State6502* state);
byte get_byte_absolute_x(State6502* state);
word get_address_absolute_y(State6502* state);
byte get_byte_absolute_y(State6502* state);
word get_address_indirect_jmp(State6502* state);
word get_address_indirect_x(State6502* state);
byte get_byte_indirect_x(State6502* state);
word get_address_indirect_y(State6502* state);
byte get_byte_indirect_y(State6502* state);
word get_address_relative(State6502* state);