Dr.Feroza D Mirajkar
Dr.Feroza D Mirajkar
  • 36
  • 2 635
Cyber Physical Systems Part III
5C Architecture of Industry 4.0 , CPS architecture for IIoT, Challenges for CPS Developement
(Refered the NPTEL videos )
มุมมอง: 13

วีดีโอ

Cyber Physical Systems Part IICyber Physical Systems Part II
Cyber Physical Systems Part II
มุมมอง 719 ชั่วโมงที่ผ่านมา
Applications of CPS in smart Grids and Industry I have also referred the NPTEL videos
Cyber Physical Systems Part ICyber Physical Systems Part I
Cyber Physical Systems Part I
มุมมอง 35วันที่ผ่านมา
Industry 4.0, IOT, Cyber Physical Systems, Components , Applications
8051 Program to convert a given BCD number to Hexadecimal number8051 Program to convert a given BCD number to Hexadecimal number
8051 Program to convert a given BCD number to Hexadecimal number
มุมมอง 21วันที่ผ่านมา
The program processes the byte stored at address 40H in memory by splitting it into two nibbles (upper and lower). The upper nibble is multiplied by 10, and then this product is added to the lower nibble. The result is then stored back into the next memory location.
8051 program to convert Hexadecimal number to BCD number8051 program to convert Hexadecimal number to BCD number
8051 program to convert Hexadecimal number to BCD number
มุมมอง 302 วันที่ผ่านมา
This program performs two divisions. It first divides the value stored at address 30H by 10, stores the quotient and remainder, and then performs a second division on the quotient using the same divisor (10). The second division's quotient is stored back at address 30H, and after swapping the nibbles of the second remainder, it adds the first division's remainder to it and stores the result at ...
8051 Program Ascending or Descending using Bubble Sort8051 Program Ascending or Descending using Bubble Sort
8051 Program Ascending or Descending using Bubble Sort
มุมมอง 855 วันที่ผ่านมา
1.The program initializes registers R3 and R2. 2.It enters a nested loop to process values from memory locations starting at 30H. 3.For each pair of values, it compares the value in the accumulator with vale at adress 0F0H and performs swaps if necessary. 4.Once the inner loop completes, it returns to the outer loop until all iterations are finished. 5.Finally, the program enters an infinite lo...
8051 Program to ADD an ARRAY of numbers8051 Program to ADD an ARRAY of numbers
8051 Program to ADD an ARRAY of numbers
มุมมอง 10312 วันที่ผ่านมา
1.Calculate the sum of 5 data bytes stored in memory, starting at address 30h. 2.Count the number of carries generated during the summation process and store the count at memory location 40h. 3.Store the final sum at memory location 41h.
8051 program to find the CUBE of a 8 bit numberLoop Method8051 program to find the CUBE of a 8 bit numberLoop Method
8051 program to find the CUBE of a 8 bit numberLoop Method
มุมมอง 5613 วันที่ผ่านมา
The program calculates the cube of a number stored at 30H by: 1.Squaring the number (MUL AB in the main program). 2.Multiplying the square with the base twice in the subroutine CUBE. 3.Accumulating the results while handling carry. The final result is stored in consecutive memory locations starting from 31H. th-cam.com/video/rKQKMbkg23w/w-d-xo.htmlsi=7TCO9YUp0OQL1Hwn
8051 program to transfer 10 bytes from internal RAM to external memory8051 program to transfer 10 bytes from internal RAM to external memory
8051 program to transfer 10 bytes from internal RAM to external memory
มุมมอง 4513 วันที่ผ่านมา
Step 1: Initialize R2 = 10, R0 = 30h, DPTR= 0040h. Step 2: Start the loop: Read the value from the internal memory address pointed to by R0 and store it in the Accumulator (A). Write this value to the external memory address pointed to by DPTR. Increment DPTR to point to the next byte in external memory. Increment R0 to point to the next byte in internal RAM. Decrement R2, reducing the loop cou...
8051 Program to transfer 10 bytes of code memory to internal RAM8051 Program to transfer 10 bytes of code memory to internal RAM
8051 Program to transfer 10 bytes of code memory to internal RAM
มุมมอง 6514 วันที่ผ่านมา
This 8051 program effectively demonstrates how to manipulate data using registers, pointers, and loops. It initializes a data table and copies its contents to a specified memory location
8051 Program to transfer 10 bytes from external RAM to external RAM8051 Program to transfer 10 bytes from external RAM to external RAM
8051 Program to transfer 10 bytes from external RAM to external RAM
มุมมอง 12817 วันที่ผ่านมา
The program explains the logic and steps involved in transferring data between two external memory locations, 3000h, and 4000h, using an assembly language program and demonstrates data movement between memory locations using the MOVX instruction and a loop to perform operations a specified number of times.
8051 program to find the cube of a 8-bit number8051 program to find the cube of a 8-bit number
8051 program to find the cube of a 8-bit number
มุมมอง 9520 วันที่ผ่านมา
here we find the cube of a 8 bit number by multipling the number thrice .This program initializes data pointers and registers to perform multiplication of values stored in memory, followed by a series of arithmetic operations. The results are stored back into memory at specified addresses
8051 program to find the SQUARE of a 8 bit number8051 program to find the SQUARE of a 8 bit number
8051 program to find the SQUARE of a 8 bit number
มุมมอง 6121 วันที่ผ่านมา
The program reads a number from memory location 30H. It calculates the square of the number in the subroutine SQR. The result (lower and higher bytes) is stored in the memory locations 31H and 32H. After returning from the subroutine, the program enters an infinite loop.
8051 Program to transfer 10 bytes from external RAM to internal RAM8051 Program to transfer 10 bytes from external RAM to internal RAM
8051 Program to transfer 10 bytes from external RAM to internal RAM
มุมมอง 9222 วันที่ผ่านมา
copies 10 bytes of data from external memory starting at address 0040h to internal RAM starting at address 30h. Steps : Initialize the loop counter and pointers. Use a loop to transfer data byte by byte. Halt when the operation is comple
8051 Program to transfer 10 bytes from internal RAM to internal RAM8051 Program to transfer 10 bytes from internal RAM to internal RAM
8051 Program to transfer 10 bytes from internal RAM to internal RAM
มุมมอง 10925 วันที่ผ่านมา
Step-by-Step Execution Step 1: Initialize R2 = 10, R0 = 30h, R1= 40h. Step 2: Start the loop: Read the value from the address 30h (R0) in internal RAM and store it in the Accumulator. Write this value to the address 40h (R1) in internal RAM. Increment R0 to point to the next byte in internal RAM. Increment R1 to point to the next byte in internal RAM. Decrement the loop counter (R2). Step 3: Re...

ความคิดเห็น

  • @lubnakauser6211
    @lubnakauser6211 5 วันที่ผ่านมา

    Excellent

  • @radhikasangam1989
    @radhikasangam1989 5 วันที่ผ่านมา

    Nice explanation mam🎉🎉

  • @STAR-Falcon04
    @STAR-Falcon04 18 วันที่ผ่านมา

    Ma'am I'm a student of class X. I'm from Nepal 🇳🇵. My exam is coming in next 2 months. Please upload videos on 8085 Microprocessor. It would be very helpful for me. I always try to find Pakistani's videos channel and I saw your video it is nicely explained but in my course there's is 8085 Microprocessor. So it was not the video made for me. But I hope you will help me ❤ Allah Hafiz ❤

    • @ferozamirajkar3390
      @ferozamirajkar3390 18 วันที่ผ่านมา

      I understand, I'll look into creating some 8085 Microprocessor videos, keep an eye out! Send me the list of programs which you want

  • @ShazNoman
    @ShazNoman 29 วันที่ผ่านมา

    I am a new subscriber👌

  • @freelancerurmi540
    @freelancerurmi540 29 วันที่ผ่านมา

    go ahead

  • @freelancerurmi540
    @freelancerurmi540 29 วันที่ผ่านมา

    very good video

    • @ferozamirajkar3390
      @ferozamirajkar3390 29 วันที่ผ่านมา

      Thanks for watching!

    • @freelancerurmi540
      @freelancerurmi540 29 วันที่ผ่านมา

      @@ferozamirajkar3390 can i talk about youre youtube channel

  • @kiruthikamanoj8430
    @kiruthikamanoj8430 หลายเดือนก่อน

    Thank you for ur timely help

  • @krishdadge9064
    @krishdadge9064 หลายเดือนก่อน

    Appreciate your Hardwork towards the Subject and Students, Kudos Mam

    • @ferozamirajkar3390
      @ferozamirajkar3390 หลายเดือนก่อน

      @@krishdadge9064 Thank You Krishna

    • @ferozamirajkar3390
      @ferozamirajkar3390 หลายเดือนก่อน

      @@krishdadge9064 Thank You Krishna

  • @mujeeb_speaks
    @mujeeb_speaks หลายเดือนก่อน

    Very nice

  • @shaikabidappu863
    @shaikabidappu863 หลายเดือนก่อน

    Effective teaching

    • @ferozamirajkar3390
      @ferozamirajkar3390 หลายเดือนก่อน

      Thank You Glad you think so! Keep watching