Rust로 작성해 보는 컴퓨터 구조 (6) - NOR 게이트

나빌레라의 이미지

NOR 게이트

NOR 게이트를 모델링하는 과정은 NAND 게이트를 모델링하는 과정과 완전히 같다. 당연히 NOR는 NOT-OR의 약자다. 그러므로 진리표도 OR 게이트 진리표의 반대다.

입력 A 입력 B 출력
0 0 1
0 1 0
1 0 0
1 1 0

NOR 게이트의 진리표는 위 표와 같다. 아래 그림은 NOR 게이트의 회로도 심볼이다.

NOR게이트 기호

NAND 게이트와 구성이 같다. OR 게이트 앞에 인버터가 붙은 모습이다. 이 모양 그대로 모델 코드를 만들면 된다.

{caption="gates.rs | NOR 게이트 모델 추가"}
use crate::transistor;
 
// ... 생략 ...
 
pub struct NorGate {
    orgate: OrGate,
    inv: NotGate,
}
 
// ... 생략 ...
 
impl NorGate {
    pub fn new() -> NorGate {
        NorGate{
            orgate: OrGate::new(),
            inv: NotGate::new(),
        }
    }
}
 
// ... 생략 ...
 
impl GateInterfaces for NorGate {
    fn proc(&mut self, input_a: bool, input_b: bool) -> bool {
        return self.inv.proc(self.orgate.proc(input_a, input_b))
    }
}

앞 장과 중복되는 코드는 생략했다. 코드는 앞 장의 NAND 게이트 모델 코드를 복사해서 이름을 바꾸고 NorGate 구조체의 멤버 변수를 OrGate 객체로 바꾼것 뿐이다. 기본 틀은 NAND 게이트 모델과 동일하므로 내부에 포함하는 게이트 객체만 바꾸면 NOR 게이트 구현이 끝난다.

테스트 방법도 앞 장과 동일하다.

{caption="main.rs | NOR 모델 테스트"}
mod transistor;
mod gates;
 
use gates::GateInterfaces;
 
fn main() {
//... 생략 ...
 
    let mut nor_gate = gates::NorGate::new();
    println!("Test NOR Gate, (0, 0) -> {}", nor_gate.proc(false, false));
    println!("Test NOR Gate, (0, 1) -> {}", nor_gate.proc(false, true));
    println!("Test NOR Gate, (1, 0) -> {}", nor_gate.proc(true, false));
    println!("Test NOR Gate, (1, 1) -> {}", nor_gate.proc(true, true));
}

코드를 복사해 붙이고 이름만 NOR로 바꾸면 된다. 빌드하고 실행한다.

... 생략 ...
Test OR Gate, (0, 0) -> false
Test OR Gate, (0, 1) -> true
Test OR Gate, (1, 0) -> true
Test OR Gate, (1, 1) -> true
... 생략 ...
Test NOR Gate, (0, 0) -> true
Test NOR Gate, (0, 1) -> false
Test NOR Gate, (1, 0) -> false
Test NOR Gate, (1, 1) -> false

테스트 출력 결과가 NOR 게이트와 일치한다. 그리고 OR 게이트의 출력과 비교하면 반대값이다. 이렇게 NOR 게이트 모델 구현을 완료했다.

File attachments: 
첨부파일 크기
Image icon nor-gate-symbol.png4.88 KB

댓글

나빌레라의 이미지

간단히 인버터에 OR 게이트를 연결하는 것으로 구현했습니다.

self.inv.proc(self.orgate.proc(input_a, input_b))

이 코드가 인버터에 입력으로 OR 게이트의 출력을 넣는 코드입니다.

쉽죠?

----------------------
얇은 사 하이얀 고깔은 고이 접어서 나빌레라

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.