DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52

DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52 - Hallo sahabat YK69 Elektro, Pada kesempatan kali ini saya akan membahas artkel yang berjudul DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52, saya telah menyediakan berbagai macam artikel terbaru lainnya. mudah mudahan artikel yang saya tulis ini bermanfaat buat anda semuanya.

Ditulis Oleh : YK69 Elektro
Judul : DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52

lihat juga


DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52

Kelompok Instruksi Aritmatika

ADD A,Rn (Add register to A).
ADD A, (direct Add direct byte to A).
ADD A, @Ri (Add indirect RAM to A).
ADD A,#data (Add immediate data to A).
ADDC A,Rn (Add register to A with Carry).
ADDC A (direct Add direct byte to A with Carry).
ADDC A,@Ri (Add indirect RAM to A with Carry).
ADDC A,#data (Add immediate data to A with Carry).
SUBB A,Rn (Subtract register from A with Borrow).
SUBB A,direct (Subtract direct byte from A with Borrow).
SUBB A,@Ri (Subtract indirect RAM from A with Borrow).
SUBB A,#data (Subtract immediate data from A with Borrow0).
INC A (Increment A).
INC Rn (Increment register).
INC direct (Increment direct byte).
INC @Ri (Increment indirect RAM).
DEC A (Decrement A).
DEC Rn (Decrement register).
DEC direct (Decrement direct byte).
DEC @Ri (Decrement indirect RAM).
INC DPTR (Increment Data Pointer).
MUL AB (Multiply A & B (A x B => BA)).
DIV AB (Divide A by B (A/B => A + B)).
DA A (Decimal Adjust A).


Kelompok Instruksi Logika.

ANL A,Rn (AND register to A).
ANL A,direct (AND direct byte to A).
ANL A,@Ri (AND indirect RAM to A).
ANL A,#data (AND immediate data to A).
ANL direct,A (AND A to direct byte).
ANL direct,#data (AND immediate data to direct byte).
ORL A,Rn OR (register to A).
ORL A,direct (OR direct byte to A).
ORL A,@Ri (OR indirect RAM to A).
ORL A,#data (OR immediate data to A).
ORL direct,A (OR A to direct byte).
ORL direct,#data (OR immediate data to direct byte).
XRL A,Rn (Exclusive-OR register to A).
XRL A,direct (Exclusive-OR direct byte to A).
XRL A,@Ri (Exclusive-OR indirect RAM to A).
XRL A,#data (Exclusive-OR immediate data to A).
XRL direct,A (Exclusive-OR A to direct byte).
XRL direct,#data (Exclusive-OR immediate data to direct byte).
CLR A (Clear A).
CPL A (Complement A).
RL A (Rotate A Left).
RLC A (Rotate A Left through Carry).
RR A (Rotate A Right 1 1
RRC A (Rotate A Right through Carry).
SWAP A (Swap nibbles within A).

Kelompok Instruksi Penyalinan Data.

MOV A,Rn (Move register to A).
MOV A,direct (Move direct byte to A).
MOV A,@Ri (Move indirect RAM to A).
MOV A,#data (Move immediate data to A)
MOV Rn,A (Move A to register).
MOV Rn,direct (Move direct byte to register).
MOV Rn,#data (Move immediate data to register).
MOV direct,A (Move A to direct byte).
MOV direct,Rn (Move register to direct byte).
MOV direct,direct (Move direct byte to direct byte).
MOV direct,@Ri (Move indirect RAM to direct byte).
MOV direct,#data (Move immediate data to direct byte).
MOV @Ri,A (Move A to indirect RAM).
MOV @Ri,direct (Move direct byte to indirect RAM).
MOV @Ri,#data (Move immediate data to indirect RAM).
MOV DPTR,#data16 (Load Data Pointer with 16-bit constant).
MOVC A,@A+DPTR (Move Code byte relative to DPTR to A).
MOVC A,@A+PC (Move Code byte relative to PC to A)
MOVX A,@Ri (Move External RAM (8-bit addr) to A).
MOVX A,@DPTR (Move External RAM (16-bit addr) to A)
MOVX @Ri,A (Move A to External RAM (8-bit addr))
MOVX @DPTR,A (Move A to External RAM (16-bit addr)).
PUSH direct (Push direct byte onto stack).
POP direct (Pop direct byte from stack).
XCH A,Rn (Exchange register with A).
XCH A,direct (Exchange direct byte with A).
XCH A,@Ri (Exchange indirect RAM with A).
XCHD A,@Ri (Exchange low-order Digit indirect RAM with A).

Kelompok Instruksi Bit dan Bit-test.

CLR C (Clear Carry flag).
CLR bit (Clear direct bit).
SETB C (Set Carry flag).
SETB bit (Set direct bit).
CPL C (Complement Carry flag).
CPL bit (Complement direct bit).
ANL C,bit (AND direct bit to Carry flag).
ANL C,/bit (AND complement of direct bit to Carry flag).
ORL C,bit (OR direct bit to Carry flag).
ORL C,/bit (OR complement of direct bit to Carry flag).
MOV C,bit (Move direct bit to Carry flag).
MOV bit,C (Move Carry flag to direct bit).

Kelompok Instruksi Percabangan.

ACALL addr11 (Absolute subroutine call).
LCALL addr16 (Long subroutine call).
RET (Return from subroutine).
RETI (Return from interrupt).
AJMP addr11 (Absolute Jump).
LJMP addr16 (Long Jump).
SJMP rel (Short Jump (relative addr)).
JMP @A+DPTR (Jump indirect relative to DPTR).
JZ rel (Jump if A is Zero).
JNZ rel (Jump if A is Not Zero).
JC rel (Jump if Carry flag is set).
JNC rel (Jump if No Carry flag).
JB bit,rel (Jump if direct Bit is set).
JNB bit,rel (Jump if direct Bit is Not set)
JBC bit,rel (Jump if direct Bit is set & Clear bit).
CJNE A,direct,rel (Compare direct to A & Jump if Not Equal).
CJNE A,#data,rel (Compare immediate to A & Jump if Not Equal).
CJNE Rn,#data,rel (Compare immed. to reg. & Jump if Not Equal).
CJNE @Ri,#data,rel (Compare immed. to ind. & Jump if Not Equal).
DJNZ Rn,rel (Decrement register & Jump if Not Zero).
DJNZ direct,rel (Decrement direct byte & Jump if Not Zero).
NOP (No operation).



Demikianlah Artikel dari kami yang berjudul DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52,apakah anda menyukainya ? mudah-mudahan artikel ini bisa memberi manfaat untuk anda semua.

Anda sedang membaca artikel DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52 dan artikel ini url permalinknya adalah https://yk69.blogspot.com/2010/03/daftar-instruksi-pemrograman-assembly.html Artikel yang anda cari Lainnya bokep, video bokep, streaming bokep, streaming , videos, porn, videos porn, kimcil, bugil, telanjang, abg, mesum, tetek, memek, toket, masturbasi, bmf, download, perkosa, kepergok, mesum, pemerkosaan, kepergok mesum, download video porn, download video bokep, bokep terbaru, streaming bokep terbaru, jilbab, semok, ngentot, indo, janda, asia, orgasme, meki, sex, video sex, spg, streaming mesum, ml, tante, streaming abg, cabe cabean, cantik, manis, bokep indo, bokep cinta, streaming mesum, hot bokep, bokep hot, abg bugil, anak smp, bocah smp, anak sma, bocah sma, indonesia, 3gp'

Adaptor/ Regulator

  1. Rangkaian Regulator Variable Sederhana

Alarm/ Buzzer

  1. Refrigerator Door Alarm Circuit Using LDR
  2. Water Activated Alarm Using IC 555 Circuit

Audio

  1. 3VDC Stereo Headphone Amplifier by IC LM4910 - New!
  2. 9 Volt Portable Headphone Amplifier Circuit
  3. Audio Peak Level Indicator By Op-Amp
  4. Op-Amp 6-Line Audio Mixer Circuit
  5. Rangkaian 11-90 hz Subwoofer Filter Using TL072 Op-Amp
  6. Rangkaian Alat Bantu Pendengaran
  7. Rangkaian Audio Surround Decoder

Battery Chargers

  1. Rangkaian Charger aki 6 Volt

Box speaker

  1. Power Meter Schematic For Audio Amplifier
  2. Sound Level (Decibel) Meter Circuit
  3. Ukuran Box Subwoofer 10" - New!

Control/ Pengendali

  1. 9 Second Countdown Power-On Relay With 7 segment Display
  2. DC Motor Controller Circuit Using 741 Op-Amp
  3. Darlington Pair to Drive DC motor Circuit
  4. Simple Switch On Time Delay Circuit
  5. Stepper Motor Controller using IC 4027 - New!

Effect Guitar

  1. UM3561 - Simple Sound Effects Generator Circuit

Inverter/Ups

  1. 100Watt Inverter Circuit by IRF44 Mosfet
  2. 12VDC to 220VAC Inverter Circuit Using IC 555
  3. 12VDC – 220VAC Inverter Using Cmos CD4047
  4. 500 Watt Inverter 12VDC to 220VAC

LED/ Lighting

  1. 10 LED VU Meter Using IC LM3914 - New!

Microphones

  1. Rangkaian Alat Bantu Pendengaran

Mikrokontroller

  1. AT89s51-52 and AVR USB Downloader - New!

Op-Amp/ Penguat

  1. Audio Peak Level Indicator By Op-Amp

Power Amplifier

  1. 25V Capacitor Bank for OCL Amplifier
  2. 30W Mini Mosfet Amplifier
  3. 35W Audio Amplifier Circuit by STK082
  4. 4,8W Class-A MOSFET Amplifier - New!
  5. BA5417 Stereo Power Amplifier Circuit - New!
  6. LM383 - Car Audio Amplifier Circuit - New!
  7. Power Meter Schematic For Audio Amplifier
  8. Rangkaian 400W MOSFET Amplifier
  9. Rangkaian Power Amplifier Blazer 1000 Watt - New!
  10. Sound Level (Decibel) Meter Circuit

Radio/Intercom

  1. LM390 Simple 2-Way intercom Circuit
  2. Rangkaian 3V FM Transmitter

Saklar/Relay

  1. 9 Second Countdown Power-On Relay With 7 segment Display
  2. Driver Relay Menggunkan Transistor
  3. Light/Dark Switch With Relay
  4. Simple Switch On Time Delay Circuit
  5. Simple switch-Off Time Delay Circuit

Sensor/ Pendeteksi

  1. Car Parking Sensor circuit Using Infra-Red LED
  2. Rangkaian Pendeteksi Angin - New!
  3. Smoke Detector circuit Using LDR

Tester Circuits

  1. High Voltage Meter or Probe Design
  2. Power Meter Schematic For Audio Amplifier
  3. Rangkaian Ampere Meter Digital
  4. Rangkaian Transistor Tester
  5. Sound Level (Decibel) Meter Circuit

Timer/ Osilator

  1. 9 Second Countdown Power-On Relay With 7 segment Display
  2. Bistable Multivibrator Using IC 555 Circuit
  3. IC 555 Monostable Circuit
  4. Rangkaian 8038 frequency | Signal Generator
  5. Simple Switch On Time Delay Circuit
  6. Simple switch-Off Time Delay Circuit
  7. Triangle and Squarewave Generator Using Op-Amp

Tone Control/ Equalizer

  1. 6 Band Graphic Equaliser Circuit Using 741 Op-Amp
  2. Op-Amp 6-Line Audio Mixer Circuit
  3. Rangkaian 11-90 hz Subwoofer Filter Using TL072 Op-Amp
,DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52 xxx .

Related Posts :

0 Response to "DAFTAR INSTRUKSI PEMROGRAMAN ASSEMBLY AT89S51/S52"

Post a Comment