AC97 Sample Driver and Related Code Samples.
This directory contains a sample AC97 adapter driver and several related code samples.
These samples need to be compiled with the Windows .NET or Windows XP build environment but are binary compatible with older operating systems like Windows 2000. To build the samples, enter any Windows .NET or Windows XP build environment and run build –cZ from this directory. The AC97 sample driver also runs in Windows 98 Second Edition or Windows Me, but the property page DLL and control panel application do not. For more information, please refer to the readme.htm files in each subdirectory. The INF file in the driver directory installs all of the samples in the subdirectories. The header file in this directory defines the private property used by each of the samples.
The sample software includes, common library, peripheral APIs, and test modules
for the APIs. The common library include startup file, standard definition and
header files, processor specific setup module, generic interrupt related APIs,
timer routine, and scatter loading file. The peripheral directories include,
GPIO, PWM, Real-time clock, timer, SPI, I2C, Watchdog timer, UART, external
interrupt, etc.
采用3D Bresenham算法在兩點間劃一直線
% This program is ported to MATLAB from:
% B.Pendleton. line3d - 3D Bresenham s (a 3D line drawing algorithm)
% ftp://ftp.isc.org/pub/usenet/comp.sources.unix/volume26/line3d, 1992
%
% Which is referenced by:
% Fischer, J., A. del Rio (2004). A Fast Method for Applying Rigid
% Transformations to Volume Data, WSCG2004 Conference.
% http://wscg.zcu.cz/wscg2004/Papers_2004_Short/M19.pdf
加亮文本框
Lightbox v2.0 uses the Prototype Framework and Scriptaculous Effects Library. You will need to include these three Javascript files in your header.
Generating Fractals with SSE/SSE2
You probably have heard about fractals before. They are beautiful pictures such as the one shown above. Any fractal can be described using iterative formulas. So you can generate a fractal by evaluating these formulas and finding the color of each pixel. That is a large computational task, and drawing a fractal needs a fast CPU and a carefully optimized program.