自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Liang Tang's 专栏

技术探讨

  • 博客(9)
  • 收藏
  • 关注

原创 Write Your Own Operating System Tutorial(3)

Lesson 3: NASMIn this lesson we will learn to use an assembler to write our programs.  In previous lessons we have assembled them using DEBUG.  After playing around with this for a while, you will q

2003-01-21 09:06:00 2371

原创 Write Your Own Operating System Tutorial(4)

Lesson 4: Hello, WorldNow is the time you’ve all been waiting for.  Finally we get to the classic “first” program.  Every decent programming book has a “Hello, World” program, and now we know enough

2003-01-21 09:06:00 1900 1

原创 Write Your Own Operating System Tutorial(5)

Lesson 5: Let’s Make It InteractiveAll of this printing stuff to the screen is fun, but no operating system would be any good at all if it did not provide any interactivity.  Let’s make it read inpu

2003-01-21 09:06:00 1655

原创 Write Your Own Operating System Tutorial(6)

Lesson 6: Boot LoaderEverything we’ve done so far has been placed entirely inside the boot sector.  We can’t make our operating system very big at all if it is to fit in one sector.  We need a way o

2003-01-21 09:06:00 2498

原创 Write Your Own Operating System Tutorial(7)

Lesson 7: Start Saying Goodbye To BIOSNow that we have a boot loader that will load our operating system, and thus can make our operating system larger than one sector, we can now begin to add some

2003-01-21 09:05:00 2182

原创 Write Your Own Operating System Tutorial(2)

Lesson 2: Making Our First Bootable DiskIn this lesson, we will learn how to create a boot program on a floppy disk.  We will start by modifying the Microsoft DOS Boot Record.For our purposes, we

2003-01-20 09:50:00 1928

原创 Write Your Own Operating System Tutorial(1)

Lesson 1: The Boot SectorIn this lesson we’ll learn about the contents of the boot sector so that we can learn to write our own boot program.When the computer boots from a floppy, BIOS (Basic Inpu

2003-01-20 09:43:00 2526

原创 GBA探索日记(二)

GBA探索日记(二)OBJ及OAMOBJ就是指的一个个的精灵,或者说就是GBA中的小块小块的图片.它其实跟BG差不多.只是它要小一些.它也算个图层.比如GBA中的RPG游戏就喜欢把一个个的人物用OBJ来实现.这样方便控制他们的位置.当然,从GBA探索日记(-)中也可以看到BG的控制其实也是很方便的.而OBJ和BG的差别就是大小.设置显示模式如果你的程序里要用OBJ那么,在设置显示模式的时候需要

2003-01-15 09:52:00 3577

原创 GBA探索日记(-)

GBA探索日记(-)mode0-2的BG与VRAM GBA的VRAM总共96KB,在mode3-5中,VRAM跟计算机的显示内存一样.屏幕上一个点对应一个显示内存地址.可以看看下面两个函数,都是在mode4下的写点函数.void PlotPixel(int x,int y, unsigned short int c){                m_VideoBuf

2003-01-13 09:19:00 10305

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除