资 源 简 介
//获得当前的模式
oldmode = vga_getcurrentmode[]
//初始化
vga_init[]
//判断是否支持该模式
if[vga_hasmode[mode]]
vga_setmode[mode]
else {
printf["No such mode
"]
exit[1]
}
//取得信息
width = vga_getxdim[]
height = vga_getydim[]
colors = vga_getcolors[]
//绘图
for[i=0 i