x393
1.0
FPGAcodeforElphelNC393camera
Main Page
+
Packages
Packages
+
Package Functions
All
Functions/Tasks/Always Construct
Variables
+
Design Unit List
Design Unit List
Design Units
Design Unit Hierarchy
+
Design Unit Members
+
All
1
2
3
5
7
8
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions/Tasks/Always Construct
_
a
c
e
f
g
l
p
r
s
t
w
+
Variables
1
2
3
5
7
8
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
File Members
+
All
c
d
s
u
+
Variables
c
d
s
u
•
All
Classes
Namespaces
Files
Functions
Variables
csconvert_jp4.v
Go to the documentation of this file.
1
39
`timescale 1ns/1ps
40
41
module
csconvert_jp4
(
en
,
42
clk
,
43
din
,
44
pre_first_in
,
45
y_out
,
46
yaddr
,
47
ywe
,
48
pre_first_out
);
49
50
input
en
;
51
input
clk
;
// clock
52
input
[
7
:
0
]
din
;
// input data in scanline sequence
53
input
pre_first_in
;
// marks the first input pixel
54
output
[
7
:
0
]
y_out
;
// output Y (16x16) in scanline sequence. Valid if ys active
55
output
[
7
:
0
]
yaddr
;
// address for the external buffer memory to write 16x16x8bit Y data
56
output
ywe
;
// wrire enable of Y data
57
output
pre_first_out
;
58
59
wire
pre_first_out
=
pre_first_in
;
60
wire
[
7
:
0
]
y_out
= {~
din
[
7
],
din
[
6
:
0
]};
61
reg
[
7
:
0
]
yaddr_cntr
;
62
reg
ywe
;
63
wire
[
7
:
0
]
yaddr
= {
yaddr_cntr
[
4
],
yaddr_cntr
[
7
:
5
],
yaddr_cntr
[
0
],
yaddr_cntr
[
3
:
1
]};
64
always
@ (
posedge
clk
)
begin
65
ywe
<=
en
& (
pre_first_in
|| (
ywe
&& (
yaddr
[
7
:
0
] !=
8'hff
)));
66
if
(!
en
||
pre_first_in
)
yaddr_cntr
[
7
:
0
] <=
8'h0
;
67
else
if
(
ywe
)
yaddr_cntr
[
7
:
0
] <=
yaddr_cntr
[
7
:
0
] +
1
;
68
end
69
70
endmodule
71
72
csconvert_jp4
Definition:
csconvert_jp4.v:41
csconvert_jp4.2226y_out
2226y_outwire[7:0]
Definition:
csconvert_jp4.v:60
csconvert_jp4.2220pre_first_in
2220pre_first_in
Definition:
csconvert_jp4.v:53
csconvert_jp4.2229yaddr
2229yaddrwire[7:0]
Definition:
csconvert_jp4.v:63
csconvert_jp4.2227yaddr_cntr
2227yaddr_cntrreg[7:0]
Definition:
csconvert_jp4.v:61
csconvert_jp4.2217en
2217en
Definition:
csconvert_jp4.v:50
csconvert_jp4.2218clk
2218clk
Definition:
csconvert_jp4.v:51
csconvert_jp4.2225pre_first_out
2225pre_first_outwire
Definition:
csconvert_jp4.v:59
csconvert_jp4.2228ywe
2228ywereg
Definition:
csconvert_jp4.v:62
csconvert_jp4.2219din
[7:0] 2219din
Definition:
csconvert_jp4.v:52
compressor_jp
csconvert_jp4.v
Generated by
1.8.12