mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
c_gen.pl : Added handling for data from GIF path1/2/3 FIFO.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Thu Apr 9 13:03:54 1998 Jillian Ye <jillian@cygnus.com>
|
||||||
|
|
||||||
|
* c_gen.pl: Added handling for data from GIF PATH1/2/3 FIFO.
|
||||||
|
|
||||||
Wed Apr 8 18:07:41 1998 Frank Ch. Eigler <fche@cygnus.com>
|
Wed Apr 8 18:07:41 1998 Frank Ch. Eigler <fche@cygnus.com>
|
||||||
|
|
||||||
* t-cop2.s (mpg): Put END/NOP VU instructions to give something to
|
* t-cop2.s (mpg): Put END/NOP VU instructions to give something to
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
# ! (reg wrt 32) 0xH (addr) 0xH (data)
|
# ! (reg wrt 32) 0xH (addr) 0xH (data)
|
||||||
# ~ (reg wrt 64) 0xH (addr) 0xHigh_Low (data)
|
# ~ (reg wrt 64) 0xH (addr) 0xHigh_Low (data)
|
||||||
# % (reg read 64) 0xH (addr) 0xHigh_Low (data)
|
# % (reg read 64) 0xH (addr) 0xHigh_Low (data)
|
||||||
# r (read only) 0xH (addr) 4/8
|
# @ (read only) 0xH (addr) 4/8
|
||||||
# # comment line
|
# # comment line
|
||||||
# Note: n can be 0 (for VU1), 1 (for VU2), or 2 (for GIF).
|
# Note: n can be 0 (for VU1), 1 (for VU2), or 2 (for GIF).
|
||||||
# H, High, or Low is hex data in the format of FFFFFFFF
|
# H, High, or Low is hex data in the format of FFFFFFFF
|
||||||
@ -76,7 +76,7 @@ while( $inputline = <INFILE> )
|
|||||||
{
|
{
|
||||||
&process_comment;
|
&process_comment;
|
||||||
}
|
}
|
||||||
elsif ( $inputline =~ /^[012]/ ) # This is a data line
|
elsif ( $inputline =~ /^[01234]/ ) # This is a data line
|
||||||
{
|
{
|
||||||
&process_data;
|
&process_data;
|
||||||
}
|
}
|
||||||
@ -96,8 +96,9 @@ while( $inputline = <INFILE> )
|
|||||||
{
|
{
|
||||||
&perform_test64;
|
&perform_test64;
|
||||||
}
|
}
|
||||||
elsif ( $inputline =~ /^\r/ ) # A line starts with "r" is a read only test request
|
elsif ( $inputline =~ /^\@/ ) # A line starts with "@" is a read only test request
|
||||||
{
|
{
|
||||||
|
print ("glorp\n");
|
||||||
&perform_test_read_only;
|
&perform_test_read_only;
|
||||||
}
|
}
|
||||||
else # ignore this input
|
else # ignore this input
|
||||||
@ -317,10 +318,20 @@ print OUTFILE ("
|
|||||||
#define DATA_ADDR_CONST_1 0x10005000
|
#define DATA_ADDR_CONST_1 0x10005000
|
||||||
#define FLAG_ADDR_CONST_1 0x10009060
|
#define FLAG_ADDR_CONST_1 0x10009060
|
||||||
|
|
||||||
/* GIF */
|
/* GIF PATH1 */
|
||||||
#define SRC_ADDR_CONST_2 0x1000a010
|
#define SRC_ADDR_CONST_2 0x1000a010
|
||||||
#define DATA_ADDR_CONST_2 0x10006000
|
#define DATA_ADDR_CONST_2 0x10006020
|
||||||
#define FLAG_ADDR_CONST_2 0x1000a060
|
#define FLAG_ADDR_CONST_2 0x1000a060
|
||||||
|
|
||||||
|
/* GIF PATH2 */
|
||||||
|
#define SRC_ADDR_CONST_3 0x1000a010
|
||||||
|
#define DATA_ADDR_CONST_3 0x10006010
|
||||||
|
#define FLAG_ADDR_CONST_3 0x1000a060
|
||||||
|
|
||||||
|
/* GIF PATH3 */
|
||||||
|
#define SRC_ADDR_CONST_4 0x1000a010
|
||||||
|
#define DATA_ADDR_CONST_4 0x10006000
|
||||||
|
#define FLAG_ADDR_CONST_4 0x1000a060
|
||||||
");
|
");
|
||||||
print OUTFILE ("\n\n");
|
print OUTFILE ("\n\n");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user