您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

realmode.c 368B

1234567891011121314151617181920212223
  1. /* Real-mode interface: C portions.
  2. *
  3. * Initial version by Michael Brown <mbrown@fensystems.co.uk>, January 2004.
  4. */
  5. #include "realmode.h"
  6. /*
  7. * Copy data to/from base memory.
  8. *
  9. */
  10. #ifdef KEEP_IT_REAL
  11. void memcpy_to_real ( segoff_t dest, void *src, size_t n ) {
  12. }
  13. void memcpy_from_real ( void *dest, segoff_t src, size_t n ) {
  14. }
  15. #endif /* KEEP_IT_REAL */