git.joshuawise.com
/
mandelfpga.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
c3ed432
)
76.025MHz, ship it
author
Joshua Wise
<joshua@rebirth.joshuawise.com>
Tue, 18 Mar 2008 21:29:26 +0000
(17:29 -0400)
committer
Joshua Wise
<joshua@rebirth.joshuawise.com>
Tue, 18 Mar 2008 21:29:26 +0000
(17:29 -0400)
Main.v
patch
|
blob
|
blame
|
history
diff --git
a/Main.v
b/Main.v
index 40eac0b8eb659e6cc5b0ea1fbcab45f696397f34..b034663f746a74b01b00874ac28c4bdbe5ff17fa 100644
(file)
--- a/
Main.v
+++ b/
Main.v
@@
-64,22
+64,23
@@
module NaiveMultiplier(
input xsign, ysign,
output reg [12:0] out,
output reg sign,
input xsign, ysign,
output reg [12:0] out,
output reg sign,
- output reg
[1:0]
ovf);
+ output reg ovf);
always @(posedge clk)
begin
{ovf,out} <=
(((y[12] ? (x ) : 0) +
(y[11] ? (x >> 1) : 0) +
always @(posedge clk)
begin
{ovf,out} <=
(((y[12] ? (x ) : 0) +
(y[11] ? (x >> 1) : 0) +
- (y[10] ? (x >> 2) : 0) +
- (y[9] ? (x >> 3) : 0)) +
- ((y[8] ? (x >> 4) : 0) +
- (y[7] ? (x >> 5) : 0) +
- (y[6] ? (x >> 6) : 0)))+
+ (y[10] ? (x >> 2) : 0)) +
+ (((y[9] ? (x >> 3) : 0) +
+ (y[8] ? (x >> 4) : 0))+
+ ((y[7] ? (x >> 5) : 0) +
+ (y[6] ? (x >> 6) : 0))))+
+
(((y[5] ? (x >> 7) : 0) +
(((y[5] ? (x >> 7) : 0) +
- (y[4] ? (x >> 8) : 0)
+
+ (y[4] ? (x >> 8) : 0)+
(y[3] ? (x >> 9) : 0)) +
(y[3] ? (x >> 9) : 0)) +
- ((y[2] ? (x >> 10): 0)
+
+ ((y[2] ? (x >> 10): 0) +
(y[1] ? (x >> 11): 0) +
(y[0] ? (x >> 12): 0)));
sign <= xsign ^ ysign;
(y[1] ? (x >> 11): 0) +
(y[0] ? (x >> 12): 0)));
sign <= xsign ^ ysign;
@@
-93,12
+94,13
@@
module Multiplier(
input xsign, ysign,
output wire [12:0] out,
output wire sign,
input xsign, ysign,
output wire [12:0] out,
output wire sign,
- output wire
[1:0]
overflow);
+ output wire overflow);
NaiveMultiplier nm(clk, x, y, xsign, ysign, out, sign, overflow);
endmodule
NaiveMultiplier nm(clk, x, y, xsign, ysign, out, sign, overflow);
endmodule
+// Yuq.
module MandelUnit(
input clk,
input [12:0] x, y,
module MandelUnit(
input clk,
input [12:0] x, y,
@@
-264,8
+266,8
@@
module Mandelbrot(
reg [7:0] out;
// We detect when the state should be poked by a high negedge followed
reg [7:0] out;
// We detect when the state should be poked by a high negedge followed
- // by a high posedge -- if tha
t
happens, then we're guaranteed that the
- // state following the current state will be 100.
+ // by a high posedge -- if tha
t
happens, then we're guaranteed that the
+ // state following the current state will be
3'b
100.
reg lastneg;
always @(negedge mclk)
lastneg <= pixclk;
reg lastneg;
always @(negedge mclk)
lastneg <= pixclk;
This page took
0.02325 seconds
and
4
git commands to generate.