Skip to content

Commit

Permalink
adding dram memory addr to coreinfo
Browse files Browse the repository at this point in the history
The DRAM on roach2 has not been used in anger and somehow the coreinfo
entry was missing, strange. This change adds it in.
  • Loading branch information
wnew committed Sep 15, 2015
1 parent 4bc91c3 commit fe97a41
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xps_library/@xps_dram/xps_dram.m
Expand Up @@ -66,6 +66,11 @@
borph_info.mode = 3;
b = set(b,'borph_info',borph_info);
end
if (strcmp(xsg_hw_sys,'ROACH2'))
borph_info.size = 2^30;
borph_info.mode = 3;
b = set(b,'borph_info',borph_info);
end


% misc ports
Expand Down

0 comments on commit fe97a41

Please sign in to comment.