mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-26 01:49:25 +00:00
correct off-by-1 bug in original corner4 data generation [fixes #553]
This commit is contained in:
parent
26ee6306eb
commit
eca18ea683
@ -29,7 +29,7 @@ util.write("../../../src/fx/fx.hgr.ripple.data.a", util.ripple(unique_vals))
|
||||
unique_vals.reverse()
|
||||
util.write("../../../src/fx/fx.hgr.iris.in.data.a", unique_vals)
|
||||
|
||||
corner4_coords = [(139-x,95-y) for (x,y) in unique_coords]
|
||||
corner4_coords = [(139-x,94-y) for (x,y) in unique_coords]
|
||||
corner4_vals = util.vals_1bit(corner4_coords)
|
||||
util.write("../../../src/fx/fx.hgr.corner4.in.data.a", corner4_vals)
|
||||
corner4_vals.reverse()
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user