port 80h post code ranges
rangecategory/subsystem
00 – 0f
debug codes: can be used by any peim/driver for debug.
10 – 1f
host processors: 1f is an unrecoverable cpu error.
20 – 2f
memory/chipset: 2f is no memory detected or no useful memory detected.
30 – 3f
recovery: 3f indicated recovery failure.
40 – 4f
reserved for future use.
50 – 5f
i/o busses: pci, usb, isa, ata, etc. 5f is an unrecoverable error. start with pci.
60 – 6f
reserved for future use (for new busses).
70 – 7f
output devices: all output consoles. 7f is an unrecoverable error.
80 – 8f
reserved for future use (new output console codes).
90 – 9f
input devices: keyboard/mouse. 9f is an unrecoverable error.
a0 – af
reserved for future use (new input console codes).
b0 – bf
boot devices: includes fixed media and removable media. bf is an unrecoverable error.
c0 – cf
reserved for future use.
d0 – df
boot device selection.
e0 – ff
e0 - ee: miscellaneious codes
ef: boot/s3 resume failure
f0 – ff: ff processor exception
串列埠開發Serial port常常遇到的問題
首先大家要學會如何正確寫出大體框架。推薦 不過記得在那個老哥忘了在build grid 加引用,坑了我好久。有的人會遇到沒有許可權的問題 那麼就win r,調出命令介面,輸入cmd,然後就是我遇到的最坑的問題了,安卓5.0以上拿不到串列埠,坑爹啊!包括mumu,夜神等模擬器 而且android自帶的...
PHP 開發常常遇到的小問題
這裡列舉了本人在做開發的時候常常會用到的小問題,然後累計了下來,防止以後忘記 1.php 實現按照指定字元,將字串拆分成陣列 str 1 2 3 4 5 var explode str print r var var dump var 2.php取兩個陣列的交集 ccc array intersec...
異常 常見的異常
在程式設計中異常處理會被頻繁的使用,所以有必要知道一些常見的異常。nullpointexception 空指標異常,屬於執行時異常。簡單來說就是呼叫了未經初始化的物件或者不存在的物件,或者是訪問或修改null物件的屬性或方法。classnotfoundexception 找不到類異常。出現這種情況一...