Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- dyooz
- Date:
- 2021-10-02
- Revision:
- 1:e3bea6b4ce47
- Parent:
- 0:56723d925d39
File content as of revision 1:e3bea6b4ce47:
#include "mbed.h"
Serial UART(USBTX,USBRX); // Déclaration d’un objet de type Serial
int main() {
char *i = (char *)0x0100; // Adresse de départ
int j,k ;
UART.printf("\nAffichage de la zone memoire\n");
for (j=0; j < 16 ; j++) {
UART.printf("Adresse %#04x : ",i);
for(k = 0; k < 16; k++) {
UART.printf("%02X ",*i++);
}
UART.printf("\n");
}
while(1)
{
}
}