Search found 415 matches

by admin
Thu Sep 19, 2024 10:59 pm
Forum: Circuit Talk
Topic: logic circuit and linux /wine
Replies: 1
Views: 16

Re: logic circuit and linux /wine

Well, it's uses WPF for UI. Try to look at this article: https://ccifra.github.io/PortingWPFApps ... rview.html
However, I've never tried it and do not expect it will work correctly.
by admin
Tue Aug 06, 2024 12:13 am
Forum: Circuit Talk
Topic: I can't log in
Replies: 1
Views: 20703

Re: I can't log in

you've logged in
by admin
Tue Jul 09, 2024 12:40 pm
Forum: Circuit Talk
Topic: Help request - 2bit state register not going through all states
Replies: 3
Views: 19386

Re: Help request - 2bit state register not going through all states

It is hard to understand your circuit from picture with cut wires. Which you actually can attach on this site so it won't be lost on other sites.
If you design your circuit in LogicCircuit software and post your project here you will have a better chance to be helped.
by admin
Tue May 28, 2024 9:50 pm
Forum: Circuit Talk
Topic: MonoStable & Multiple Clocks
Replies: 1
Views: 16140

Re: MonoStable & Multiple Clocks

There are no timers. the closest you can get is use of sensor, with the sequence.
You can have more then one clock, but they are all synchronous i.e. they all tick at the same time.
by admin
Sat May 25, 2024 5:05 pm
Forum: Circuit Talk
Topic: BCD Counter starts at random number
Replies: 11
Views: 50962

Re: BCD Counter starts at random number

Sorry, my mistake. I saved the file in unreleased version.
Here it is again should be loadable.
by admin
Thu May 23, 2024 10:38 pm
Forum: Circuit Talk
Topic: BCD Counter starts at random number
Replies: 11
Views: 50962

Re: BCD Counter starts at random number

Here I simplified it for you. Look at "Counter 0 simple" and "Counter 1 simplified".
by admin
Thu May 23, 2024 4:59 pm
Forum: Circuit Talk
Topic: BCD Counter starts at random number
Replies: 11
Views: 50962

Re: BCD Counter starts at random number

First the expression x XOR 1 is equal to NOT x. So, I don't know what you are trying to do here. Second it is very hard to understand your circuit as it is so big. If you move the repeated parts to separate circuits it will be much easier to test and find issues, not to mention to look at your ...
by admin
Tue May 21, 2024 12:20 pm
Forum: Circuit Talk
Topic: BCD Counter starts at random number
Replies: 11
Views: 50962

Re: BCD Counter starts at random number

Hi Alan, JK flip-flops are flipping to a random state at power on. That is why you see it starting at the random state. You will need to reset them at power on. Please read this discussion: https://logiccircuit.org/forum/viewtopic.php?t=3 and especially the last suggestion from ehennig. On the other ...
by admin
Fri Apr 26, 2024 9:41 am
Forum: Circuit Talk
Topic: HDL parser in C#
Replies: 2
Views: 20207

Re: HDL parser in C#

The next version will have some HDL output.
by admin
Sun Oct 01, 2023 9:36 am
Forum: Circuit Talk
Topic: Multiplexer Race Condition
Replies: 3
Views: 36957

Re: Multiplexer Race Condition

I think it is a real race condition on the circuit you've designed. Your clock signal is coming to the 10 bits register while the data on the D input is still changing. Try to change the design in a such way that this is not happening. I'd suggest having a shift register that can shift left and ...