source: buchla-68k/vlib/vmput.c@ 109c83b

Last change on this file since 109c83b was 109c83b, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Compiled full ROM in Hatari.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 =============================================================================
3 vmput.c -- video menu put functions
4 Version 3 -- 1987-03-30 -- D.N. Lynx Crowe
5 (c) Copyright 1987 -- D.N. Lynx Crowe
6
7 vmput(sbase, row, col, ms, ma)
8 uint *sbase, rwo, col, ma;
9 char *ms[];
10
11 Copies lines from ms, with attribute ma, to sbase at (row,col).
12
13 vmputa(sbase, row, col, ms, ma)
14 uint *sbase, row, col, *ma;
15 char *ms[];
16
17 Copies lines from ms, with attributes from ma, to sbase at (row,col).
18 =============================================================================
19*/
20
21typedef unsigned int uint;
22
23extern int vputc();
24
25/*
26 =============================================================================
27 vmput(sbase, row, col, ms, ma) -- put a menu item in a screen image.
28 Copies lines from ms, with attribute ma, to sbase at (row,col).
29 =============================================================================
30*/
31
32vmput(sbase, row, col, ms, ma)
33uint *sbase, row, col, ma;
34char *ms[];
35{
36 register uint c, tc, tr;
37 char *cp;
38
39 tr = row;
40
41 while (cp = *ms++) {
42
43 tc = col;
44
45 while (c = *cp++)
46 vputc(sbase, tr, tc++, c, ma);
47
48 tr++;
49 }
50}
51
52/*
53 */
54
55/*
56 =============================================================================
57 vmputa(sbase, row, col, ms, ma) -- put a menu item in a screen image.
58 Copies lines from ms, with attributes from ma, to sbase at (row,col).
59 =============================================================================
60*/
61
62vmputa(sbase, row, col, ms, ma)
63uint *sbase, row, col, *ma[];
64char *ms[];
65{
66 register uint c, tc, tr;
67 uint *tm;
68 char *cp;
69
70 tr = row;
71
72 while (cp = *ms++) {
73
74 tc = col;
75 tm = *ma++;
76
77 while (c = *cp++)
78 vputc(sbase, tr, tc++, c, *tm++);
79
80 tr++;
81 }
82}
Note: See TracBrowser for help on using the repository browser.