~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to docs/go32ex/vgasel.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{This example demonstrates the use of the segment_to_descriptor()
2
 
function.
3
 
 
4
 
It switches to VGA mode 13h (320x200x256 color), creates a selector
5
 
to the memory (based at $A000:0000), clears this memory with color
6
 
15 (white) and waits until the enter key is pressed }
7
 
 
8
 
uses go32;
9
 
 
10
 
var
11
 
        vgasel : Word;
12
 
        r : trealregs;
13
 
 
14
 
begin
15
 
        { set VGA mode 13h }
16
 
        r.eax := $13; realintr($10, r);
17
 
        { allocate descriptor to VGA memory quickly; it could be done
18
 
        with allocate_ldt_descriptors() too, but we would have to 
19
 
        initialize it by ourselves... unlike segment_to_descriptor() 
20
 
        which automatically sets the limit and the base address 
21
 
        correctly }
22
 
        vgasel := segment_to_descriptor($A000);
23
 
        { simply fill the screen memory with color 15 }
24
 
        seg_fillchar(vgasel, 0, 64000, #15);
25
 
        { wait for a return press }
26
 
        readln;
27
 
        { back to text mode }
28
 
        r.eax := $3; realintr($10, r);
29
 
        { don't deallocate vgasel, that can't be done }
30
 
end.
 
 
b'\\ No newline at end of file'