mirror of
https://github.com/trudnai/Steve2.git
synced 2024-10-08 09:55:39 +00:00
95 lines
3.2 KiB
C
95 lines
3.2 KiB
C
//
|
|
// 6502_dis_utils.h
|
|
// Steve ][
|
|
//
|
|
// Created by Tamas Rudnai on 9/21/19.
|
|
// Copyright © 2019, 2020 Tamas Rudnai. All rights reserved.
|
|
//
|
|
// This file is part of Steve ][ -- The Apple ][ Emulator.
|
|
//
|
|
// Steve ][ is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Steve ][ is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Steve ][. If not, see <https://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
#ifndef _6502_dis_utils_h
|
|
#define _6502_dis_utils_h
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#define DISASS_ADDR_LEN 5 // 4 digits + \0
|
|
#define DISASS_OPCODE_LEN (4 * 3 + 1) // max 4 bytes * (2 digits + 1 space) + \0
|
|
#define DISASS_INST_LEN (6 + 1) // 3 char (unknown instr? -- give it 6 chars) + \0
|
|
#define DISASS_OPER_LEN (14 + 2 + 1 + 1 + 1) // 4 digits + 2 brackets + 1 comma + 1 index + \0
|
|
#define DISASS_COMM_LEN 256 // 255 char + \0
|
|
|
|
typedef struct disassembly_s {
|
|
uint64_t clk; // clock time
|
|
uint8_t op; // opcode
|
|
uint16_t addr;
|
|
char hexAddr[DISASS_ADDR_LEN]; // 4 digits + \0
|
|
char opcode[DISASS_OPCODE_LEN]; // max 4 bytes * (2 digits + 1 space) + \0
|
|
char * pOpcode; // pointer for opcode string builder
|
|
char inst[DISASS_INST_LEN]; // 3 char (unknown instr? -- give it 6 chars) + \0
|
|
char oper[DISASS_OPER_LEN]; // 4 digits + 2 brackets + 1 comma + 1 index + \0
|
|
char comment[DISASS_COMM_LEN]; // to be able to add some comments
|
|
} disassembly_t;
|
|
|
|
extern disassembly_t disassembly;
|
|
|
|
//#define DISASS_TRACE
|
|
//#undef DISASS_TRACE
|
|
|
|
extern unsigned long long discnt;
|
|
//extern unsigned long long int clktime;
|
|
|
|
extern void _disHexB( char ** s, const uint8_t b );
|
|
extern void _disHexW( char ** s, const uint16_t w );
|
|
extern void _disPuts( char ** s, const char * from );
|
|
extern void _disPrintf( char * s, const size_t n, const char * fmt, ... );
|
|
extern void _disNewInstruction(void);
|
|
|
|
#if defined(DISASS_TRACE) || defined(DISASSEMBLER)
|
|
|
|
#define disHexB( s, b ) _disHexB( &(s), (b) )
|
|
#define disHexW( s, w ) _disHexW( &(s), (w) )
|
|
#define disPuts( s, from ) _disPuts( &(s), (from) )
|
|
#define disPrintf( s, fmt, args... ) _disPrintf( (s), sizeof(s), (fmt), ##args )
|
|
|
|
// TODO: We should add a new field for clk counter, so we can print that out _before_ execution, not after...
|
|
#define disNewInstruction() _disNewInstruction()
|
|
|
|
|
|
#ifdef DISASS_TRACE
|
|
extern void printDisassembly( FILE * f );
|
|
#endif
|
|
|
|
|
|
#else // DISASS_TRACE
|
|
|
|
#define disHexB( to, b )
|
|
#define disHexW( to, w )
|
|
#define disPuts( to, from )
|
|
#define disPrintf( s, fmt, args... )
|
|
#define disNewInstruction()
|
|
#define printDisassembly( f )
|
|
|
|
#endif // DISASS_TRACE
|
|
|
|
extern size_t disassLineLength;
|
|
|
|
extern const char * disassemblyLine(void);
|
|
|
|
|
|
#endif /* _6502_dis_utils_h */
|