memory.h

来自「GDB Remote Stub Backend for debugging an」· C头文件 代码 · 共 15 行

H
15
字号
/* *  Copyright (C) 2004 Tobias Lorenz * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. *//* memory functions *//* write to unaligned address is possible: 1,2,3, 5,6,7, ... *//* length is how many long words should be read */void memory_read(unsigned long  address, unsigned long * data, unsigned long length);void memory_write(unsigned long address, unsigned long * data, unsigned long length);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?