VirtualBox

source: vbox/trunk/src/recompiler/targphys.h@ 74791

最後變更 在這個檔案從74791是 37689,由 vboxsync 提交於 13 年 前

recompiler: Merged in changes from 0.13.0.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 538 位元組
 
1/* Define target_phys_addr_t if it exists. */
2
3#ifndef TARGPHYS_H
4#define TARGPHYS_H
5
6#ifdef TARGET_PHYS_ADDR_BITS
7/* target_phys_addr_t is the type of a physical address (its size can
8 be different from 'target_ulong'). */
9
10#if TARGET_PHYS_ADDR_BITS == 32
11typedef uint32_t target_phys_addr_t;
12#define TARGET_PHYS_ADDR_MAX UINT32_MAX
13#define TARGET_FMT_plx "%08x"
14#elif TARGET_PHYS_ADDR_BITS == 64
15typedef uint64_t target_phys_addr_t;
16#define TARGET_PHYS_ADDR_MAX UINT64_MAX
17#define TARGET_FMT_plx "%016" PRIx64
18#endif
19#endif
20
21#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette