URL
https://opencores.org/ocsvn/raytrac/raytrac/trunk
Subversion Repositories raytrac
Compare Revisions
- This comparison shows the changes necessary to convert path
/raytrac
- from Rev 175 to Rev 176
- ↔ Reverse comparison
Rev 175 → Rev 176
/branches/fp/dpc.vhd
256,14 → 256,18
fullQ:process(sres0f,sres123f,sres24f,sres567f,unary,crossprod,addsub,eoi_int) |
begin |
if unary='0' then |
if crossprod='1' or addsub='1' then |
--! Suma, Resta o Producto Cruz |
if addsub='1' then |
--! Suma o Resta |
eoi_demuxed_int <= "00"&eoi_int&'0'; |
resf_event <= sres123f; |
else |
elsif crossprod='0' then |
--! Producto Punto |
eoi_demuxed_int <= '0'&eoi_int&"00"; |
resf_event <= sres24f; |
else |
--! Producto Cruz |
eoi_demuxed_int <= "00"&eoi_int&'0'; |
resf_event <= sres123f; |
end if; |
elsif crossprod='1' then |
|