aboutsummaryrefslogtreecommitdiff
path: root/src/target/riscv/riscv-013.h
blob: f39393c07d0b79fb265ac8dab8c0b98dc9d08d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef OPENOCD_TARGET_RISCV_RISCV_013_H
#define OPENOCD_TARGET_RISCV_RISCV_013_H

#include "riscv.h"

/* TODO: These functions should be replaced here by access methods that can be
 * reused by other modules (e.g. a function writing an abstract commands, a
 * function filling/executing program buffer, etc.), while the specifics on how
 * to use these general-purpose version-specific methods to get a register's
 * value will be in `riscv-013_reg.c`.
 */
int riscv013_get_register(struct target *target,
		riscv_reg_t *value, enum gdb_regno rid);
int riscv013_get_register_buf(struct target *target, uint8_t *value,
		enum gdb_regno regno);
int riscv013_set_register(struct target *target, enum gdb_regno rid,
		riscv_reg_t value);
int riscv013_set_register_buf(struct target *target, enum gdb_regno regno,
		const uint8_t *value);

#endif /* OPENOCD_TARGET_RISCV_RISCV_013_H */