我想在不使用任何库函数的情况下将信息逐字节从一个内存位置移动到另一个内存位置。我使用在 qemu 中模拟的 16 位架构,这段代码是我正在编写的微小内核的一部分,所以我不能使用任何系统调用
// The struct i want to copy
struct procinfo info_tmp;
// here i put some stuff in my struct
info_tmp.pid = tablaprocesos[indiceProceso].pid;
kstrcpy(info_tmp.nombre, tablaprocesos[indiceProceso].nombre);
info_tmp.segmento = tablaprocesos[indiceProceso].memoria;
if(tablaprocesos[indiceProceso].estado==PROCESO_LISTO)
info_tmp.estado = 0;
else if(tablaprocesos[indiceProceso].estado==PROCESO_RUN)
info_tmp.estado = 1;
else if(tablaprocesos[indiceProceso].estado==BLOQ_TECLADO ||
tablaprocesos[indiceProceso].estado==PROCESO_SYSCALL)
info_tmp.estado = 2;
else
info_tmp.estado = 3; // Zombie
// Tiempo total = tiempoSYS + tiempoUSER
info_tmp.tiempo = tablaprocesos[indiceProceso].tiempoUSER +
tablaprocesos[indiceProceso].tiempoSYS;
// pointer to destination that i want to copy to
infoProc = (struct procinfo *)(((int)es << 16) + (0x0000ffff & ebx));
// now pointer to my source struct
procinfo * origen = &info_tmp;
int limit = sizeof(struct procinfo);
int i;
for(i=0;i<limit;i++){
// I need here to read only one byte from my source pointer to a variable "byte"
// macro written in ASM to copy one byte to a pointed location
// it writes in another data segment of another process
WRITE_POINTER_FAR(infoProc,byte);
// next byte
origen += 1;
infoProc += 1;
}
有没有一种直接的方法可以做到这一点,而无需在 ASM 中编写一个小代码来手动完成?
注意:此代码是 16 位分段 OS 内核的一部分(每个进程一个 64KB 段),源结构在内核段中,我想将其复制到另一个进程段中的位置,它不能像 *targetBytePointer = *源字节指针。