]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/main.c
-Cambie un poco la interfaz que hizo Rich, para que me quede mas comodo, asi que...
[z.facultad/75.06/emufs.git] / tipo3 / main.c
index 40418e41e21bb6c84844a87f067370a7ead0245c..c9fd819107a402fea1ea00ebaaff27af6afc5c39 100644 (file)
@@ -1,20 +1,14 @@
 #include <stdio.h>
 #include <stdio.h>
-
+typedef struct block_reg_t{
+       int block;
+       int reg;
+}block_reg_t;
 int main ( )
 {
 int main ( )
 {
-char v[39999];
-unsigned int ID_aux = 0, a= 0,b= 0,c=0,d=0;
-v[0]=0x00;
-v[1]=0x31;
-v[2]=0xC7;
-v[3]=0x06;
-a = v[0];
-b = v[1];
-c = v[2];
-d = v[3];
-ID_aux = (d << 0 ) | (c << 8) |  ( b << 16) | (a << 24);
-
-printf("el numero es = %x\n", ID_aux);
+       struct block_reg_t r;
+               
+       printf("sizeof(struct block_reg_t) = %d\n", sizeof(struct block_reg_t));
+       printf("sizeof(r) = %d\n", sizeof(r));  
 
        return 0;
 }
 
        return 0;
 }