Design
dunteman.lst
Associated article: Structured Programming: Three Little Words
Tags: Design
_STRUCTURED PROGRAMMING COLUMN_
by Jeff Duntemann
[LISTING ONE]
Screen = RECORD
ShowPtrs : ARRAY[1..HEIGHT] OF LinePtr;
StorePtrs : ARRAY[1..HEIGHT] OF LinePtr;
X,Y : Byte;
TopLine : 1..HEIGHT;
FollowCursor : Boolean
END;
[LISTING TWO]
{--------------------------------------------------------------}
{ SCREENS }
{ Virtual screen management unit }
{ }
{ by Jeff Duntemann KI6...


