硬體與軟體的邏輯一致性——38解碼器的程式類比

來源:互聯網
上載者:User

電腦中,硬體和軟體其實是相輔相成的,軟體可以降低硬體成本,硬體可以提高速度;這個道理是硬體加速器的存在價值。而在我們的類比環境中,完全可以用軟體類比一些可以類比的硬體條件,比如38解碼器。

//////////////////////////////////////////////////////////////////////////

#include

using namespace std;

int main()
{
 char yes = 'Y';
 do{
 int a=0,b=0,c = 0;
 printf("input a,b,c\n");
 while (1){
  scanf("%d%d%d",&a,&b,&c);
  if ((a<=1 && a>=0) && (b<=1 && b>=0) && (c<=1 && c>=0)) break;
  printf("輸入位範圍為 0,1\n");
 } 
 printf("input a = %d b = %d c = %d\n",a,b,c);
 printf("使能端高電平1有效(已經至1)\n");
 printf("【38解碼器】,輸出端低電平有效(已經至0)\n");
 int y[8] = {0};
 
 y[0] = a|b|c;
 y[1] = a|b|(1^c);
 y[2] = a|(1^b)|c;
 y[3] = a|(1^b)|(1^c);
 y[4] = (1^a)|b|c;
 y[5] = (1^a)|b|(1^c);
 y[6] = (1^a)|(1^b)|c;
 y[7] = (1^a)|(1^b)|(1^c);
 
 for(int i=0;i<8;i++)
 {
  if(y[i] == 0){
   printf("輸出端y%d低電平有效,值為%d\n",i,i);
  }
 }
 printf("doyou want again? y/Y\n");
 cin>>yes;
 }while((yes == 'y')||(yes == 'Y'));
 return 0;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.