ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
Loading...
Searching...
No Matches
put_image.c
Go to the documentation of this file.
1/*****************************************************************************
2 * ugBASIC - an isomorphic BASIC language compiler for retrocomputers *
3 *****************************************************************************
4 * Copyright 2021-2026 Marco Spedaletti (asimov@mclink.it)
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *----------------------------------------------------------------------------
18 * Concesso in licenza secondo i termini della Licenza Apache, versione 2.0
19 * (la "Licenza"); è proibito usare questo file se non in conformità alla
20 * Licenza. Una copia della Licenza è disponibile all'indirizzo:
21 *
22 * http://www.apache.org/licenses/LICENSE-2.0
23 *
24 * Se non richiesto dalla legislazione vigente o concordato per iscritto,
25 * il software distribuito nei termini della Licenza è distribuito
26 * "COSÌ COM'È", SENZA GARANZIE O CONDIZIONI DI ALCUN TIPO, esplicite o
27 * implicite. Consultare la Licenza per il testo specifico che regola le
28 * autorizzazioni e le limitazioni previste dalla medesima.
29 ****************************************************************************/
30
31/****************************************************************************
32 * INCLUDE SECTION
33 ****************************************************************************/
34
35#include "../../ugbc.h"
36
37/****************************************************************************
38 * CODE SECTION
39 ****************************************************************************/
40
41extern char DATATYPE_AS_STRING[][16];
42
53
54 void put_image_vars_original( Environment * _environment, char * _image, char * _x1, char * _y1, char * _x2, char * _y2, char * _frame, char * _sequence, char * _flags ) {
55
56 if ( _environment->emptyProcedure ) {
57 return;
58 }
59
61
62 Variable * image = variable_retrieve( _environment, _image );
63
64 Resource * resource = build_resource_for_sequence( _environment, _image, _frame, _sequence );
65
66 Variable * realFrame = NULL;
67 Variable * frame = NULL;
68 if ( _frame) {
69 frame = variable_retrieve_or_define( _environment, _frame, VT_BYTE, 0 );
70 realFrame = frame;
71 }
72 Variable * sequence = NULL;
73 if ( _sequence) {
74 sequence = variable_retrieve_or_define( _environment, _sequence, VT_BYTE, 0 );
75 realFrame = frame;
76 }
77
78 switch( resource->type ) {
79 case VT_SEQUENCE:
80 if ( image->bankAssigned != -1 ) {
81
82 char alreadyLoadedLabel[MAX_TEMPORARY_STORAGE];
83 sprintf(alreadyLoadedLabel, "%salready", label );
84
85 char bankWindowId[MAX_TEMPORARY_STORAGE];
86 sprintf( bankWindowId, "(BANKWINDOW%2.2x-2)", image->residentAssigned );
87
88 char bankWindowName[MAX_TEMPORARY_STORAGE];
89 sprintf( bankWindowName, "BANKWINDOW%2.2x", image->residentAssigned );
90
91 // cpu_compare_and_branch_16bit_const( _environment, bankWindowId, image->variableUniqueId, alreadyLoadedLabel, 1 );
92 // if ( image->uncompressedSize ) {
93 // bank_uncompress_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName );
94 // } else {
95 // bank_read_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName, image->size );
96 // }
97 // cpu_store_16bit(_environment, bankWindowId, image->variableUniqueId );
98 // cpu_label( _environment, alreadyLoadedLabel );
99
100 // Variable * frameSize = variable_temporary( _environment, VT_WORD, "(temporary)");
101 // variable_store( _environment, frameSize->name, image->frameSize );
102 // Variable * bank = variable_temporary( _environment, VT_BYTE, "(temporary)");
103 // variable_store( _environment, bank->name, image->bankAssigned );
104 Variable * offset = variable_temporary( _environment, VT_ADDRESS, "(temporary)");
105
106 if ( !sequence ) {
107 if ( !frame ) {
108 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, "", "", image->frameSize, image->frameCount );
109 } else {
110 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, "", frame->realName, image->frameSize, image->frameCount );
111 }
112 } else {
113 if ( !frame ) {
114 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, sequence->realName, "", image->frameSize, image->frameCount );
115 } else {
116 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, sequence->realName, frame->realName, image->frameSize, image->frameCount );
117 }
118 }
119
120 // Variable * address = variable_temporary( _environment, VT_ADDRESS, "(temporary)");
121 // variable_store( _environment, address->name, image->absoluteAddress );
122 // variable_add_inplace_vars( _environment, address->name, offset->name );
123 // bank_read_vars_direct( _environment, bank->name, address->name, bankWindowName, frameSize->name );
124 cpu_math_add_16bit_const( _environment, offset->realName, image->absoluteAddress, offset->realName );
125 // bank_read_vars_bank_direct_size_vars( _environment, image->bankAssigned, offset->name, bankWindowName, image->frameSize );
126
127 outline1("LDY %s", offset->realName );
128 outline1("LDU #$%4.4x", image->frameSize );
129 if ( banks_get_default_resident( _environment, image->bankAssigned ) == image->residentAssigned ) {
130 outline1("JSR BANKREADBANK%2.2xXSDR", image->bankAssigned );
131 _environment->bankAccessOptimization.readn = 1;
132 } else {
133 outline1("LDX #%s", bankWindowName );
134 outline1("JSR BANKREADBANK%2.2xXS", image->bankAssigned );
135 _environment->bankAccessOptimization.readn = 1;
136 };
137
138 // Optimization: D = $FFFF at the end of any BANKREAD
139 outline1( "STD %s", bankWindowId );
140
141 Resource resource;
142 resource.realName = strdup( bankWindowName );
143 resource.isAddress = 0;
144
145 ef936x_put_image( _environment, &resource, _x1, _y1, NULL, NULL, image->frameSize, 0, _flags );
146
147 } else {
148 if ( !sequence ) {
149 if ( !frame ) {
150 ef936x_put_image( _environment, resource, _x1, _y1, "", "", image->frameSize, image->frameCount, _flags );
151 } else {
152 ef936x_put_image( _environment, resource, _x1, _y1, frame->name, "", image->frameSize, image->frameCount, _flags );
153 }
154 } else {
155 if ( !frame ) {
156 ef936x_put_image( _environment, resource, _x1, _y1, "", sequence->name, image->frameSize, image->frameCount, _flags );
157 } else {
158 ef936x_put_image( _environment, resource, _x1, _y1, frame->name, sequence->name, image->frameSize, image->frameCount, _flags );
159 }
160 }
161 }
162 break;
163 case VT_IMAGES:
164 if ( image->bankAssigned != -1 ) {
165
166 char alreadyLoadedLabel[MAX_TEMPORARY_STORAGE];
167 sprintf(alreadyLoadedLabel, "%salready", label );
168
169 char bankWindowId[MAX_TEMPORARY_STORAGE];
170 sprintf( bankWindowId, "BANKWINDOWID%2.2x", image->residentAssigned );
171
172 char bankWindowName[MAX_TEMPORARY_STORAGE];
173 sprintf( bankWindowName, "BANKWINDOW%2.2x", image->residentAssigned );
174
175 // cpu_compare_and_branch_16bit_const( _environment, bankWindowId, image->variableUniqueId, alreadyLoadedLabel, 1 );
176 // if ( image->uncompressedSize ) {
177 // bank_uncompress_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName );
178 // } else {
179 // bank_read_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName, image->size );
180 // }
181 // cpu_store_16bit(_environment, bankWindowId, image->variableUniqueId );
182 // cpu_label( _environment, alreadyLoadedLabel );
183
184 // Variable * frameSize = variable_temporary( _environment, VT_WORD, "(temporary)");
185 // variable_store( _environment, frameSize->name, image->frameSize );
186 // Variable * bank = variable_temporary( _environment, VT_BYTE, "(temporary)");
187 // variable_store( _environment, bank->name, image->bankAssigned );
188 Variable * offset = variable_temporary( _environment, VT_ADDRESS, "(temporary)");
189
190 if ( sequence ) {
191 if ( image->strips ) {
192 realFrame = variable_temporary( _environment, VT_BYTE, "(real frame)" );
193 outline0("PSHS Y,D");
194 outline1("LDY #%sstrip", image->realName );
195 outline1("LDA %s", sequence->realName );
196 outline0("LSLA" );
197 outline0("LDY A, Y");
198 outline1("LDA %s", frame->realName );
199 outline0("LDB A, Y" );
200 outline1("STB %s", realFrame->realName );
201 outline0("PULS Y,D");
202 } else {
204 }
205 }
206
207 if ( !frame ) {
208 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, NULL, "", image->frameSize, 0 );
209 } else {
210 ef936x_calculate_sequence_frame_offset(_environment, offset->realName, NULL, realFrame->realName, image->frameSize, 0 );
211 }
212
213 // Variable * address = variable_temporary( _environment, VT_ADDRESS, "(temporary)");
214 // variable_store( _environment, address->name, image->absoluteAddress );
215 // variable_add_inplace_vars( _environment, address->name, offset->name );
216 cpu_math_add_16bit_const( _environment, offset->realName, image->absoluteAddress, offset->realName );
217 // bank_read_vars_bank_direct_size_vars( _environment, image->bankAssigned, offset->name, bankWindowName, image->frameSize );
218
219 outline1("LDY %s", offset->realName );
220 outline1("LDU #$%4.4x", image->frameSize );
221 if ( banks_get_default_resident( _environment, image->bankAssigned ) == image->residentAssigned ) {
222 outline1("JSR BANKREADBANK%2.2xXSDR", image->bankAssigned );
223 _environment->bankAccessOptimization.readn = 1;
224 } else {
225 outline1("LDX #%s", bankWindowName );
226 outline1("JSR BANKREADBANK%2.2xXS", image->bankAssigned );
227 _environment->bankAccessOptimization.readn = 1;
228 };
229
230 // Optimization: D = $FFFF at the end of any BANKREAD
231 outline1( "STD %s", bankWindowId );
232
233 Resource resource;
234 resource.realName = strdup( bankWindowName );
235 resource.isAddress = 0;
236
237 ef936x_put_image( _environment, &resource, _x1, _y1, NULL, NULL, image->frameSize, 0, _flags );
238
239 } else {
240
241 if ( sequence ) {
242 if ( image->strips ) {
243 realFrame = variable_temporary( _environment, VT_BYTE, "(real frame)" );
244 outline0("PSHS Y,D");
245 outline1("LDY #%sstrip", image->realName );
246 outline1("LDA %s", sequence->realName );
247 outline0("LSLA" );
248 outline0("LDY A, Y");
249 outline1("LDA %s", frame->realName );
250 outline0("LDB A, Y" );
251 outline1("STB %s", realFrame->realName );
252 outline0("PULS Y,D");
253 } else {
255 }
256 }
257
258 if ( !frame ) {
259 ef936x_put_image( _environment, resource, _x1, _y1, "", NULL, image->frameSize, 0, _flags );
260 } else {
261 ef936x_put_image( _environment, resource, _x1, _y1, realFrame->name, NULL, image->frameSize, 0, _flags );
262 }
263 }
264 break;
265 case VT_IMAGE:
266 case VT_TARRAY:
267 if ( image->bankAssigned != -1 ) {
268
269 char alreadyLoadedLabel[MAX_TEMPORARY_STORAGE];
270 sprintf(alreadyLoadedLabel, "%salready", label );
271
272 char bankWindowId[MAX_TEMPORARY_STORAGE];
273 sprintf( bankWindowId, "BANKWINDOWID%2.2x", image->residentAssigned );
274
275 char bankWindowName[MAX_TEMPORARY_STORAGE];
276 sprintf( bankWindowName, "BANKWINDOW%2.2x", image->residentAssigned );
277
278 cpu_compare_and_branch_16bit_const( _environment, bankWindowId, image->variableUniqueId, alreadyLoadedLabel, 1 );
279 if ( image->uncompressedSize ) {
280 bank_uncompress_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName );
281 } else {
282 bank_read_semi_var( _environment, image->bankAssigned, image->absoluteAddress, bankWindowName, image->size );
283 }
284 cpu_store_16bit(_environment, bankWindowId, image->variableUniqueId );
285 cpu_label( _environment, alreadyLoadedLabel );
286
287 Resource resource;
288 resource.realName = strdup( bankWindowName );
289 resource.isAddress = 0;
290
291 ef936x_put_image( _environment, &resource, _x1, _y1, NULL, NULL, 1, 0, _flags );
292 } else {
293 ef936x_put_image( _environment, resource, _x1, _y1, NULL, NULL, 1, 0, _flags );
294 }
295 break;
296 default:
298 }
299
300
301}
302
303void put_image_vars_imageref( Environment * _environment, char * _image, char * _x1, char * _y1, char * _x2, char * _y2, char * _frame, char * _sequence, char * _flags ) {
304
306
307 char labelNoBank[MAX_TEMPORARY_STORAGE]; sprintf( labelNoBank, "%snobank", label );
308 char labelNoBankCompressed[MAX_TEMPORARY_STORAGE]; sprintf( labelNoBankCompressed, "%snocompressed", label );
309 char labelDecompressionDone[MAX_TEMPORARY_STORAGE]; sprintf( labelDecompressionDone, "%sdecompression", label );
310 char labelDone[MAX_TEMPORARY_STORAGE]; sprintf( labelDone, "%sdone", label );
311
312 Variable * image = variable_retrieve( _environment, _image );
313
314 Variable * frame = NULL;
315 if ( _frame) {
316 frame = variable_retrieve_or_define( _environment, _frame, VT_BYTE, 0 );
317 }
318 Variable * sequence = NULL;
319 if ( _sequence) {
320 sequence = variable_retrieve_or_define( _environment, _sequence, VT_BYTE, 0 );
321 }
322
323 // Y = OFFSET
324
325 if ( _sequence ) {
326 outline0("LDY #$3" );
327 if ( strlen(_sequence) == 0 ) {
328 } else {
329 outline1("LDB %s", sequence->realName );
330 outline1("JSR [%s+10]", image->realName );
331 }
332 if ( _frame ) {
333 if ( strlen(_frame) == 0 ) {
334 } else {
335 outline1("LDB %s", frame->realName );
336 outline1("JSR [%s+8]", image->realName );
337 }
338 }
339 } else {
340 if ( _frame ) {
341 outline0("LDY #$3" );
342 if ( strlen(_frame) == 0 ) {
343 } else {
344 outline1("LDB %s", frame->realName );
345 outline1("JSR [%s+8]", image->realName );
346 }
347 } else {
348 outline0("LDY #$0" );
349 }
350 }
351
352 // Y = BASE + OFFSET
353 outline0( "TFR Y, D" );
354 outline1( "ADDD %s", image->realName );
355 outline0( "TFR D, Y" );
356
357 // Bank assigned?
358 outline1( "LDA %s+5", image->realName );
359 outline0( "ANDA #$04" );
360 outline1( "BEQ %s", labelNoBank );
361
362 // Image compressed?
363 outline1( "LDA %s+5", image->realName );
364 outline0( "ANDA #$40" );
365 outline1( "BEQ %s", labelNoBankCompressed );
366
367 // ; U : number of bank
368 // ; Y : address on bank
369 // ; D : size to read
370 // ; X : address on memory
371
372 deploy_preferred( duff, src_hw_6809_duff_asm );
373 deploy_preferred( msc1, src_hw_6809_msc1_asm );
374 deploy_preferred( bank, src_hw_to8_bank_asm );
375
376 outline1("LDB %s+4", image->realName );
377 outline0("CLRA" );
378 outline0("TFR D, U" );
379 outline0("TFR Y, X" );
380 outline1("LDY %s+6", image->realName );
381 outline0("JSR BANKUNCOMPRESS");
382
383 cpu_jump( _environment, labelDecompressionDone );
384
385 cpu_label( _environment, labelNoBankCompressed );
386
387 outline1("LDB %s+4", image->realName );
388 outline1("LDX %s+6", image->realName );
389 outline1("LDU %s+2", image->realName );
390 outline0("JSR BANKREAD");
391 _environment->bankAccessOptimization.readn = 1;
392
393 cpu_label( _environment, labelDecompressionDone );
394
395 Variable * address = variable_temporary( _environment, VT_ADDRESS, "(stub)" );
396
397 if ( !_environment->putImageRefUnsafe ) {
398 outline1("LDA %s", address_displacement( _environment, image->realName, "5") );
399 outline1("LBEQ %sskip", label );
400 }
401
402 outline1("LDX %s+6", image->realName );
403 outline0("TFR X, Y");
404 outline1("STX %s", address->realName );
405 outline0("LEAX -2, X");
406 outline0("LDD #$FFFF");
407 outline0("STD , X");
408
409 Resource resource;
410 resource.realName = strdup( address->realName );
411 resource.isAddress = 1;
412
413 ef936x_put_image( _environment, &resource, _x1, _y1, NULL, NULL, 0, 0, _flags );
414
415 cpu_jump( _environment, labelDone );
416
417 cpu_label( _environment, labelNoBank );
418
419 outline1("STY %s", address->realName );
420
421 resource.realName = strdup( address->realName );
422 resource.isAddress = 1;
423
424 ef936x_put_image( _environment, &resource, _x1, _y1, NULL, NULL, 0, 0, _flags );
425
426 cpu_label( _environment, labelDone );
427
428 if ( !_environment->putImageRefUnsafe ) {
429 outhead1("%sskip", label );
430 }
431
432}
433
434void put_image_vars( Environment * _environment, char * _image, char * _x1, char * _y1, char * _x2, char * _y2, char * _frame, char * _sequence, char * _flags ) {
435
436 if ( _environment->emptyProcedure ) {
437 return;
438 }
439
440 Variable * image = variable_retrieve( _environment, _image );
441
442 switch( image->type ) {
443 case VT_IMAGE:
444 case VT_IMAGES:
445 case VT_SEQUENCE:
446 case VT_ADDRESS:
447 put_image_vars_original( _environment, _image, _x1, _y1, _x2, _y2, _frame, _sequence, _flags );
448 break;
449 case VT_IMAGEREF:
450 put_image_vars_imageref( _environment, _image, _x1, _y1, _x2, _y2, _frame, _sequence, _flags );
451 break;
452 default:
454 }
455
456}
457
458void put_image_vars_flags( Environment * _environment, char * _image, char * _x1, char * _y1, char * _x2, char * _y2, char * _frame, char * _sequence, int _flags ) {
459
460 _flags = _flags & ( ( FLAG_DOUBLE_Y << 8 ) | FLAG_TRANSPARENCY );
461
462 char flagsConstantName[MAX_TEMPORARY_STORAGE]; sprintf( flagsConstantName, "PUTIMAGEFLAGS%4.4x", _flags );
463 char flagsConstantParameter[MAX_TEMPORARY_STORAGE]; sprintf( flagsConstantParameter, "#PUTIMAGEFLAGS%4.4x", _flags );
464
465 Constant * flagsConstant = constant_find( _environment, flagsConstantName );
466
467 if ( !flagsConstant ) {
468 flagsConstant = malloc( sizeof( Constant ) );
469 memset( flagsConstant, 0, sizeof( Constant ) );
470 flagsConstant->name = strdup( flagsConstantName );
471 flagsConstant->realName = strdup( flagsConstantName );
472 flagsConstant->value = _flags;
473 flagsConstant->type = CT_INTEGER;
474 flagsConstant->next = _environment->constants;
475 _environment->constants = flagsConstant;
476 }
477
478 put_image_vars( _environment, _image, _x1, _y1, _x2, _y2, _frame, _sequence, flagsConstantParameter );
479}
480
void cpu_store_16bit(Environment *_environment, char *_destination, int _value)
CPU 6309: emit code to store 16 bit
Definition 6309.c:1503
void cpu_math_add_16bit_const(Environment *_environment, char *_source, int _destination, char *_other)
Definition 6309.c:1674
void cpu_compare_and_branch_16bit_const(Environment *_environment, char *_source, int _destination, char *_label, int _positive)
CPU 6309: emit code to compare two 8 bit values and jump if they are equal/different
Definition 6309.c:1578
void cpu_label(Environment *_environment, char *_label)
Definition 6309.c:356
void cpu_jump(Environment *_environment, char *_label)
Definition 6309.c:3739
Variable * variable_retrieve(Environment *_environment, char *_name)
Variable * variable_retrieve_or_define(Environment *_environment, char *_name, VariableType _type, int _value)
Resource * build_resource_for_sequence(Environment *_environment, char *_image, char *_frame, char *_sequence)
Variable * variable_temporary(Environment *_environment, VariableType _type, char *_meaning)
Define a temporary variable.
char * address_displacement(Environment *_environment, char *_address, char *_displacement)
Constant * constant_find(Environment *_environment, char *_name)
int offset
Definition _optimizer.c:681
void put_image_vars_original(Environment *_environment, char *_image, char *_x1, char *_y1, char *_x2, char *_y2, char *_frame, char *_sequence, char *_flags)
Emit ASM code for PUT IMAGE [image] AT [int],[int].
Definition put_image.c:53
void put_image_vars_imageref(Environment *_environment, char *_image, char *_x1, char *_y1, char *_x2, char *_y2, char *_frame, char *_sequence, char *_flags)
Definition put_image.c:289
void put_image_vars_flags(Environment *_environment, char *_image, char *_x1, char *_y1, char *_x2, char *_y2, char *_frame, char *_sequence, int _flags)
Definition put_image.c:430
void put_image_vars(Environment *_environment, char *_image, char *_x1, char *_y1, char *_x2, char *_y2, char *_frame, char *_sequence, char *_flags)
Definition put_image.c:406
void bank_read_semi_var(Environment *_environment, int _bank, int _address1, char *_address2, int _size)
Emit ASM code for instruction BANK READ ....
Definition bank_read.c:50
void bank_uncompress_semi_var(Environment *_environment, int _bank, int _address1, char *_address2)
Emit ASM code for instruction BANK UNCOMPRESS ....
int banks_get_default_resident(Environment *_environment, int _bank)
Definition _banks.c:107
void ef936x_put_image(Environment *_environment, Resource *_image, char *_x, char *_y, char *_frame, char *_sequence, int _frame_size, int _frame_count, char *_flags)
Definition ef936x.c:1920
void ef936x_calculate_sequence_frame_offset(Environment *_environment, char *_offset, char *_sequence, char *_frame, int _frame_size, int _frame_count)
Definition ef936x.c:2285
char * name
Definition ugbc.h:800
int value
Definition ugbc.h:815
ConstantType type
Definition ugbc.h:805
struct _Constant * next
Definition ugbc.h:832
char * realName
Definition ugbc.h:803
BankAccessOptimization bankAccessOptimization
Definition ugbc.h:3269
int putImageRefUnsafe
Definition ugbc.h:3271
Constant * constants
Definition ugbc.h:2611
int emptyProcedure
Definition ugbc.h:2932
int isAddress
Definition ugbc.h:557
VariableType type
Definition ugbc.h:559
char * realName
Definition ugbc.h:555
char * name
Definition ugbc.h:979
VariableType type
Definition ugbc.h:988
char * realName
Definition ugbc.h:982
void * malloc(YYSIZE_T)
struct _Resource Resource
#define MAX_TEMPORARY_STORAGE
Definition ugbc.h:563
#define FLAG_TRANSPARENCY
Definition ugbc.h:4567
@ CT_INTEGER
Definition ugbc.h:788
struct _Variable Variable
Structure of a single variable.
struct _Environment Environment
Structure of compilation environment.
@ VT_TARRAY
Definition ugbc.h:480
@ VT_BYTE
Definition ugbc.h:450
@ VT_IMAGEREF
Definition ugbc.h:537
@ VT_IMAGES
Definition ugbc.h:495
@ VT_ADDRESS
Definition ugbc.h:465
@ VT_IMAGE
Definition ugbc.h:489
@ VT_SEQUENCE
Definition ugbc.h:513
#define deploy_preferred(s, e)
Definition ugbc.h:4299
struct _Constant Constant
Structure of a single constant.
#define CRITICAL_CANNOT_PUT_IMAGE_WITHOUT_STRIP(s)
Definition ugbc.h:3855
#define outline0(s)
Definition ugbc.h:4252
#define CRITICAL_PUT_IMAGE_UNSUPPORTED(v, t)
Definition ugbc.h:3532
#define outline1(s, a)
Definition ugbc.h:4253
#define FLAG_DOUBLE_Y
Definition ugbc.h:4568
#define MAKE_LABEL
Definition ugbc.h:3351
#define outhead1(s, a)
Definition ugbc.h:4247
char DATATYPE_AS_STRING[][16]