OK, i resolve problem with other errors INT10 & PCI :-)
 
These errors have in coreboot without SeaBIOS or if set make menuconfig payload to None and manually add SeaBIOS to coreboot like this:
 
./build/cbfstool build/coreboot.rom add-payload -f build/seabios/out/bios.bin.elf -n fallback/payload -c lzma
 
If we want to use new version SeaBIOS we have build like this:
 
cd /coreboot
make distclean
make menuconfig (select board & set SeaBIOS to master)
cd build
git clone seabios version which I want use
(no use make menuconfig in SeaBIOS because coreboot ignores these setings, if need change debug to 8 simply edit src/Kconfig)
cd ..
make (this build coreboot with SeaBIOS manually cloned)
 
I don't know why coreboot ignores settings SeaBIOS from make menuconfig