プロセッサおよびメモリに関する情報を取得

*サンプル
#N88BASIC
'プロセッサおよびメモリに関する情報を取得
Dim sysinfo As SYSTEM_INFO
GetSystemInfo(sysinfo)
Print "CPU情報"
Print sysinfo.dwProcessorType
Print sysinfo.wProcessorLevel
Print sysinfo.wProcessorRevision
Print "プロセッサ数"
Print sysinfo.dwNumberOfProcessors
Print "プロセッサのビットマスク"
Print sysinfo.dwActiveProcessorMask
Print "メモリページのサイズ"
Print sysinfo.dwPageSize
Print "アプリケーションが利用可能なメモリ空間の最下位アドレス"
Print sysinfo.lpMinimumApplicationAddress
Print "アプリケーションが利用可能なメモリ空間の最上位アドレス"
Print sysinfo.lpMaximumApplicationAddress
Print "メモリ空間割り当ての最小単位"
Print sysinfo.dwAllocationGranularity