CPUãšã¯
äžå€®åŠçè£ çœ®, ããã»ããµãšã.
- ä»æ§ã§æ±ºããããäžé£ã®åœä»€ã»ãããå®è¡ã§ãã.
- èšæ¶è£ 眮äžã«ããããã°ã©ã ãšåŒã°ããåœä»€åãé ã«èªã¿èŸŒãã§è§£éã»å®è¡ããããšã§æ å ±ã®å å·¥ãè¡ã.
- ðã¬ãžã¹ã¿: CPUã®å éšèšæ¶é å.
- CPU - Wikipedia
Intel
i5
äžè¬åã.
i7
é«æ§èœ.
i9
AMD
Intelãããå¹çããã.
ð»ã¬ãžã¹ã¿
Registers are high-speed storage inside the processor.
ã³ã³ãã¥ãŒã¿ã®ããã»ããµãªã©ãå èµããèšæ¶åè·¯ã§, å¶åŸ¡è£ 眮ãæŒç®è£ 眮ãå®è¡ãŠãããã«çŽçµãã, æäœã«èŠããé床ãæéã®, æ¯èŒçå°éã®ãã®ãæã.
äžè¬ã«, è«çåè·¯ã«ãããŠ, ããªãããããããªã©ã«ããç¶æ ãä¿æããè£ çœ®ãã¬ãžã¹ã¿ãšåŒã¶. ã³ã³ãã¥ãŒã¿ã«ãããŠã¯, ããã»ããµãå èµããŠãããããæã. ããã»ããµã«ã¯, ããã°ã©ã ãèªã¿æžãã§ããã¬ãžã¹ã¿ä»¥å€ã«, ããã»ããµèªèº«ãåäœããããã®ã¬ãžã¹ã¿ããã, å éšã¬ãžã¹ã¿ãªã©ãšåŒã°ãã.
ã¬ãžã¹ã¿ (ã³ã³ãã¥ãŒã¿) - Wikipedia
ããŒã¿ãèšæ¶ãããåãåºãããããããšãã§ããé åºåè·¯. out (t) = out (t-1) ãå®çŸãã.
Register ã®ããã°ã©ã ã§ã®æ±ã
Pin ãæäœããããã®ã¬ãžã¹ã¿ã«ã¯, ã¢ãã¬ã¹ç©ºéã®æ±ºããããã¢ãã¬ã¹ãå²ãæ¯ãããŠãã. (ä»æ§)
ããã°ã©ã ã§ã¯, ããããã Define ãå©çšããŠã¬ãžã¹ã¿ã®ã¢ãã¬ã¹ã宣èšããã®ãçé. volatile ãã€ããããšã§, ã³ã³ãã€ã©ãæé©åããŠã¢ãã¬ã¹ãå€æŽããã®ãé²ã.
#define PA5 (*((volatile unsigned long *) 0x40004080))
ããã¯ä»¥äžãšåå€.
data = (*((volatile unsigned long *) 0x40004080));
data = 0x40004080;
data = (*0x40004080);
ãããããš, 以äžã®ããã«ã㊠Register ã®å€ã Read/Write ã§ãã.
# Register Write
PA5 = 0x20;
# Register Read
data = PA5;
åæèšå®ã¯ãããªæã.
void PortF_Init (void){ volatile unsigned long delay;
SYSCTL_RCGC2_R |= 0x00000020; // 1) F clock
delay = SYSCTL_RCGC2_R; // delay
GPIO_PORTF_LOCK_R = 0x4C4F434B; // 2) unlock PortF PF0
GPIO_PORTF_CR_R |= 0x1F; // allow changes to PF4-0
GPIO_PORTF_AMSEL_R &= 0x00; // 3) disable analog function
GPIO_PORTF_PCTL_R &= 0x00000000; // 4) GPIO clear bit PCTL
GPIO_PORTF_DIR_R &= ~0x11; // 5.1) PF4,PF0 input,
GPIO_PORTF_DIR_R |= 0x08; // 5.2) PF3 output
GPIO_PORTF_AFSEL_R &= 0x00; // 6) no alternate function
GPIO_PORTF_PUR_R |= 0x11; // enable pullup resistors on PF4,PF0
GPIO_PORTF_DEN_R |= 0x1F; // 7) enable digital pins PF4-PF0
}
L ãã« Example æç²
// symbolic names instead of addresses
#define GPIO_PORTF_DATA_R (*((volatile unsigned long *) 0x400253FC))
#define GPIO_PORTF_DIR_R (*((volatile unsigned long *) 0x40025400))
#define GPIO_PORTF_AFSEL_R (*((volatile unsigned long *) 0x40025420))
#define GPIO_PORTF_PUR_R (*((volatile unsigned long *) 0x40025510))
#define GPIO_PORTF_DEN_R (*((volatile unsigned long *) 0x4002551C))
#define GPIO_PORTF_LOCK_R (*((volatile unsigned long *) 0x40025520))
#define GPIO_PORTF_CR_R (*((volatile unsigned long *) 0x40025524))
#define GPIO_PORTF_AMSEL_R (*((volatile unsigned long *) 0x40025528))
#define GPIO_PORTF_PCTL_R (*((volatile unsigned long *) 0x4002552C))
#define SYSCTL_RCGC2_R (*((volatile unsigned long *) 0x400FE108))
// 2. Declarations Section
// Global Variablesp
unsigned long SW1; // input from PF4
unsigned long SW2; // input from PF0
// Subroutine to initialize port F pins for input and output
// PF4 is input SW1 and PF2 is output Blue LED
void PortF_Init (void){ volatile unsigned long delay;
SYSCTL_RCGC2_R |= 0x00000020; // 1) F clock
delay = SYSCTL_RCGC2_R; // delay
GPIO_PORTF_LOCK_R = 0x4C4F434B; // 2) unlock PortF PF0
GPIO_PORTF_CR_R |= 0x1F; // allow changes to PF4-0
GPIO_PORTF_AMSEL_R &= 0x00; // 3) disable analog function
GPIO_PORTF_PCTL_R &= 0x00000000; // 4) GPIO clear bit PCTL
GPIO_PORTF_DIR_R &= ~0x11; // 5.1) PF4,PF0 input,
GPIO_PORTF_DIR_R |= 0x08; // 5.2) PF3 output
GPIO_PORTF_AFSEL_R &= 0x00; // 6) no alternate function
GPIO_PORTF_PUR_R |= 0x11; // enable pullup resistors on PF4,PF0
GPIO_PORTF_DEN_R |= 0x1F; // 7) enable digital pins PF4-PF0
}
void FlashSOS (void){
//S
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08; delay (1);
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08; delay (1);
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08; delay (1);
//O
GPIO_PORTF_DATA_R |= 0x08; delay (4);
GPIO_PORTF_DATA_R &= ~0x08;delay (4);
GPIO_PORTF_DATA_R |= 0x08; delay (4);
GPIO_PORTF_DATA_R &= ~0x08;delay (4);
GPIO_PORTF_DATA_R |= 0x08; delay (4);
GPIO_PORTF_DATA_R &= ~0x08;delay (4);
//S
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08;delay (1);
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08;delay (1);
GPIO_PORTF_DATA_R |= 0x08; delay (1);
GPIO_PORTF_DATA_R &= ~0x08;delay (1);
delay (10); // Delay for 5 secs in between flashes
}
Topics
èªåã®CPUã®äžä»£ã調ã¹ã
lscpu | grep âIntelâ