mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
|
gch1280: MODULE
|
||
|
|
||
|
SYNMODE m_x = ARRAY (1:3) LONG;
|
||
|
DCL v_x m_x;
|
||
|
DCL v_xx m_x;
|
||
|
|
||
|
doit: PROC ()
|
||
|
END doit;
|
||
|
|
||
|
v_x := [ 11, 12, 13 ];
|
||
|
doit ();
|
||
|
|
||
|
END gch1280;
|