shsshs
Newbie level 5
I am new in Fpga. I am studing vhdl. I saw code like that
type CHAR_RAM_TYPE is array(0 to 39) of std_logic_vector(7 downto 0);
signal charRAM : CHAR_RAM_TYPE := ( 0=>x"41", 1=>x"6E", 2=>x"64", 3=>x"79", 4=>x"FE", 5=>x"47", 20=>x"31", 21=>x"34", 22=>x"2F", 23=>x"30", 24=>x"36", 25=>x"2F", 26=>x"30", 27=>x"37", others=>x"A0");
the thing that I want to ask is that does this representation X"46" mean "0 1 0 0 0 1 1 0" ? And does X show hegzadecimal?
thanks for help
moreover I want to help for lcd driver. I read some and am expecting leading information about lcd driver from your help. thnks.
type CHAR_RAM_TYPE is array(0 to 39) of std_logic_vector(7 downto 0);
signal charRAM : CHAR_RAM_TYPE := ( 0=>x"41", 1=>x"6E", 2=>x"64", 3=>x"79", 4=>x"FE", 5=>x"47", 20=>x"31", 21=>x"34", 22=>x"2F", 23=>x"30", 24=>x"36", 25=>x"2F", 26=>x"30", 27=>x"37", others=>x"A0");
the thing that I want to ask is that does this representation X"46" mean "0 1 0 0 0 1 1 0" ? And does X show hegzadecimal?
thanks for help
moreover I want to help for lcd driver. I read some and am expecting leading information about lcd driver from your help. thnks.