Activity for Systemâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #290365 | Initial revision | — | 4 months ago |
Edit | Post #292043 | Initial revision | — | 4 months ago |
Answer | — |
Accessibility This short guide goes over several aspects of accessibility to keep in mind when writing or editing posts on the Codidact network. There are many different disabilities out there, and these tips cover accessibility for many of them, such as people using screen readers, keyboard users, colorblind user... (more) |
— | 4 months ago |
Edit | Post #292023 | Initial revision | — | 4 months ago |
Answer | — |
Accessibility Statement Sharing information and being part of a community are the two fundamental goals of the Codidact Project. Everyone deserves access to information and to be a part of a community, and with that in mind, the Codidact Foundation is committed to accessibility in all areas of the Codidact Project. Who ... (more) |
— | 4 months ago |
Edit | Post #288591 | Initial revision | — | 4 months ago |
Answer | — |
A: Is it possible to design an n-bit full adder using SystemVerilog? ``` module fulladder #(parameter WIDTH = 4) (input logic [WIDTH - 1: 0] a, b, input logic carryin, output logic carryout, output logic [WIDTH - 1: 0] sum); assign {carryout, sum} = a + b + carryin; endmodule ``` The above design is parameter... (more) |
— | over 3 years ago |
Question | — |
Is it possible to design an n-bit full adder using SystemVerilog? I am trying to design a full adder in SystemVerilog. I searched on Wikipedia and I found this https://en.wikibooks.org/w/index.php?title=MicroprocessorDesign/AddandSubtractBlocks ``` module fulladder(a, b, cin, cout, s); input a, b, cin; output cout, s; wire temp; temp = a ^ b... (more) |
— | over 3 years ago |
Edit | Post #276767 | Initial revision | — | over 4 years ago |
Answer | — |
- Categories - Papers This page describes the Papers category. Categories are briefly described HERE. Posts in the Papers category are meant to be one-directional writeups presenting useful information to the world, much like research papers published in scientific journals. Only one post can be written per paper. O... (more) |
— | over 4 years ago |
Edit | Post #276765 | Initial revision | — | over 4 years ago |
Answer | — |
Categories Note that there are three distinct clickable links in the colored banner at the top of the page: Q&A, Papers, and Meta. These are referred to as "categories" by the site software. Each category is a container for pages. The different containers are for posts with different purposes, and also have ... (more) |
— | over 4 years ago |
Answer | — |
- Answer scoring and ordering Overview On Codidact, answers to questions are sorted by their scores, so that you'll see the best-received answers first. Each answer a score based on a ratio of upvotes to total votes, weighted to favor posts with fewer downvotes. For example, a post with seven upvotes will be shown higher tha... (more) |
— | over 4 years ago |
Answer | — |
So you're a moderator now So you've been given moderator status on a Codidact site. Welcome! This is what that means for you. Your community is your community Codidact communities are community-run. Codidact is here to support you and your community, but you make the decisions about how you run things yourselves. We'l... (more) |
— | over 4 years ago |
Answer | — |
Codidact search options While searching on a Codidact site, you have several options to help refine your search and make it easier to find what you're looking for. Searching will search all posts across that site, including Questions, Answers, Meta posts, and whatever other post types your site may have. Basic keyword se... (more) |
— | over 4 years ago |
Answer | — |
Guidelines for referencing and quoting on Codidact sites When you're writing a post, referencing and quoting external material is a great way to back up your posts, provide sources, and increase the quality of what you're writing. There are, however, a few thing to keep in mind when quoting external material. Referencing online material When you&... (more) |
— | over 4 years ago |
Answer | — |
How to ask a great question The best way to get a perfect answer to your questions is to ask a great question. The better your question is, the easier it will be for someone to be able to give you the answer you need. Here are a few things to keep in mind when asking questions. Make sure your question is in scope Every Codida... (more) |
— | over 4 years ago |
Answer | — |
Categories and post types In addition to just Q&A, here on Codidact each site can also add several different categories of posts. This is useful for different types of knowlege sharing, as well as for site activities and community building. These categories can contain different post types. Post types Currently, we have... (more) |
— | over 4 years ago |
Answer | — |
How to write good alt text What is alt text and why should I care about it? Alt text, or an image description, is what shows up in place of an image when that image fails to load. It's also what a screen reader will read out when someone is using a screen reader to browse the site, as well as what search engines and feeds... (more) |
— | over 4 years ago |
Edit | Post #275955 | Initial revision | — | over 4 years ago |
Answer | — |
- Formatting - special characters In addition to general document formatting, the HTML special characters are also supported. These are triggered by the syntax &xxx; where xxx is a short name for the specific special character. There are many many special characters defined in HTML. Consult one of the numerous HTML reference... (more) |
— | over 4 years ago |
Answer | — |
FAQ See the site introduction for detailed information about this site. The moderators here are: Dave Tweed Nick Alexeev Olin Lathrop (more) |
— | over 4 years ago |
Edit | Post #275902 | Initial revision | — | over 4 years ago |
Answer | — |
- Component ID questions It can be acceptable to show a picture of something and ask what it is. However, there are some special guidelines to keep in mind when doing so: The photo must be clear. Electronic parts are often small. Your phone camera may not be able to get close enough to show necessary detail and stay ... (more) |
— | over 4 years ago |
Edit | Post #275893 | Initial revision | — | over 4 years ago |
Answer | — |
- Allowed Topics - Arduinos Everything in this section follows from the general rules of what's on topic. However, this is such a common case that we mention it explicitly. The point of Arduinos is to add layers of abstraction above a microcontroller so that you can get some results quickly without having to know what is re... (more) |
— | over 4 years ago |
Edit | Post #275890 | Initial revision | — | over 4 years ago |
Answer | — |
Formatting posts The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with Markdown. HTML The pages you s... (more) |
— | over 4 years ago |
Edit | Post #275889 | Initial revision | — | over 4 years ago |
Answer | — |
Allowed topics This site is about Electrical Engineering (opamps, microcontrollers, etc) and Electric Power Engineering (utility-scale power generation, transmission, etc). These names may be somewhat different around the world, but the concepts are the same. On-topic Most questions that arise in the course ... (more) |
— | over 4 years ago |
Edit | Post #275880 | Initial revision | — | over 4 years ago |
Answer | — |
How to ask a good question Questions were briefly mentioned in the general site introduction. This page gives more information and guidance. You should read it before posting your first question. Your question will be judged as if you have. We want questions that are: Well thought out Writing a good question takes ... (more) |
— | over 4 years ago |
Edit | Post #275879 | Initial revision | — | over 4 years ago |
Answer | — |
Introduction, READ BEFORE POSTING Welcome to the Codidact Electrical Engineering site. Here are a few things you need to be aware of to result in a good experience for you and the other users of this site. All users are expected to understand these points, and will be treated accordingly. You should read this page before posting... (more) |
— | over 4 years ago |