Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Trong 1-2 năm gần đây, PSoC (System on chip) đã được nghiên cứu và ứng dụng rất rộng rãi nhờ ưu điểm "lập trình kéo thả" rất thuận tiện và nhanh chóng trong thiết kế. Ngoài ra, khi phát triển các ứng dụng phức tạp, PSoc có sẵn các khối ngoại vi như bộ khuếch đại thuật toán, các bộ lọc, các bộ định thời, mạch logic số, các khối chuyển đổi AD-DA v.v làm giảm độ phức tạp mạch in (PCB), và công suất suất tiêu thụ | Calling routine (CALL) and return (RET) from subprogram, as well as returning from interrupt (RETI) are executed the same way as in other microcontrollers. Instructions for stack operations Instructions PUSH and POP are, in standard ways, allowing storing values of important registers inside of stack during procedure calling. PUSH instruction is copying value of register A and X, while instruction POP returns values in opposite order. Stack is LIFO ordered, which means Last In First Out, which explains a little bit more the way PUSH and POP instructions function. Stack is positioned in upper part of RAM, so it wouldn’t overlap with defined variables. Beside holding important registers, these instructions allow transporting procedure parameters over stack, by storing parameter using PUSH before procedure call, and taking it from stack by calling PUSH instruction from inside of procedure. Instructions PUSH and POP with help of index addressing allow realization of local variables inside procedures, which will be discussed later in examples part.