Subversion Repositories HelenOS-historic

Rev

Rev 1419 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1419 Rev 1653
Line 33... Line 33...
33
 * SUCH DAMAGE.
33
 * SUCH DAMAGE.
34
 *
34
 *
35
 *  @(#)shapes.c    8.1 (Berkeley) 5/31/93
35
 *  @(#)shapes.c    8.1 (Berkeley) 5/31/93
36
 */
36
 */
37
 
37
 
-
 
38
/** @addtogroup tetris
-
 
39
 * @{
-
 
40
 */
-
 
41
/** @file
-
 
42
 */
-
 
43
 
38
/*
44
/*
39
 * Tetris shapes and related routines.
45
 * Tetris shapes and related routines.
40
 *
46
 *
41
 * Note that the first 7 are `well known'.
47
 * Note that the first 7 are `well known'.
42
 */
48
 */
Line 102... Line 108...
102
    board[pos] = onoff;
108
    board[pos] = onoff;
103
    board[pos + *o++] = onoff;
109
    board[pos + *o++] = onoff;
104
    board[pos + *o++] = onoff;
110
    board[pos + *o++] = onoff;
105
    board[pos + *o] = onoff;
111
    board[pos + *o] = onoff;
106
}
112
}
-
 
113
 
-
 
114
/** @}
-
 
115
 */
-
 
116